<script type="text/javascript">

var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
function loadXML('http://kaselr.freeownhost.com/ciworks/archive-beta.xml')
{
 xmlDoc.async="false";
 xmlDoc.onreadystatechange=verify;
 xmlDoc.load('http://kaselr.freeownhost.com/ciworks/archive-beta.xml');
 xmlObj=xmlDoc.documentElement;
}

var xmlDoc;  
function importXML('http://kaselr.freeownhost.com/ciworks/archive-beta.xml') {  
 var xmlDoc;  
 var moz = (typeof document.implementation != 'undefined') && (typeof  
document.implementation.createDocument != 'undefined');  
 var ie = (typeof window.ActiveXObject != 'undefined');  
 
 if (moz) {  
   xmlDoc = document.implementation.createDocument("", "", null)  
   xmlDoc.onload = readXML;  
 } else if (ie) {  
   xmlDoc = new ActiveXObject("Microsoft.XMLDOM");  
   xmlDoc.async = false;  
   while(xmlDoc.readyState != 4) {};  
 }  
 xmlDoc.load('http://kaselr.freeownhost.com/ciworks/archive-beta.xml');  
}

importXML("http://kaselr.freeownhost.com/ciworks/archive-beta.xml");
</script>