<script type="text/javascript">
if (window.XMLHttpRequest)
xmlhttp=new XMLHttpRequest();
else if (window.ActiveXObject)
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.onreadystatechange=onResponse;
xmlhttp.open("GET",url,true);
alert("Your browser does not support XMLHTTP.");
if(xmlhttp.readyState!=4) return;
alert("Problem retrieving XML data");
txt="<table border='1'>";
x=xmlhttp.responseXML.documentElement.getElementsByTagName("CD");
xx=x[i].getElementsByTagName("TITLE");
txt=txt + "<td>" + xx[0].firstChild.nodeValue + "</td>";