I am interested in using javscript to read from an XML file into a webpage, a new experience for 'simplewebman' . Studying w3c schools gives me many examples, but as far as I can see all recommend code such as.....if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.open("GET","cd_catalog.xml",false); xmlhttp.send(); xmlDoc=xmlhttp.responseXML;........to read in the xml My problem is that my policy to date has been to develop code in house and