<html>
<head>
<script type="text/javascript">
var xmlDoc
function loadXML()
{
if (window.ActiveXObject)
{
xmlDoc = new ActiveXObject("Microsoft.XMLDOM")
xmlDoc.async=false;
xmlDoc.load("/example/xdom/note.xml")
displaymessage()
}
else if (document.implementation && document.implementation.createDocument)
{
xmlDoc= document.implementation.createDocument("","",null)
xmlDoc.load("/example/xdom/note.xml");
xmlDoc.onload=displaymessage
}
else
{
document.write("Your browser cannot handle this script")
}
}
function displaymessage()
{
document.write(xmlDoc.getElementsByTagName("body")[0].firstChild.nodeValue)
}
</script>
</head>
<body onload="loadXML()">
</body>
</html>