<html>
<head>
<script type=”text/javascript”>
function ajaxLoader(url)
{
if (document.getElementById)
{
var x = (window.ActiveXObject) ? new ActiveXObject(”Microsoft.XMLHTTP”) : new XMLHttpRequest();
x.open(”GET”, url, false);
x.send(null);
document.getElementById(’xml_result’).innerHTML = x.responseText;
}
}
</script>
</head>
<body onload=”ajaxLoader(’YOUR_XML FILE_PATH)”>
<div id=”xml_result”></div>
</body>
</html>





