var caption = ""; function showCustomer() { xmlHttp = GetXmlHttpObject(); if (xmlHttp == null) { alert("Your browser does not support AJAX!"); return; } var path = "16746.xml"; var url = "http://www.cretanadvice.co.uk/caproxy.php"; url += "?yws_path=" + encodeURIComponent(path); xmlHttp.onreadystatechange = stateChanged; xmlHttp.open("GET", url, true); xmlHttp.send(null); } function stateChanged() { if (xmlHttp.readyState == 4) { var xmldoc = xmlHttp.responseXML; var markers = xmldoc.documentElement.getElementsByTagName("item"); for (i=0;i<1;i++) {//we need only the first item var descElement = markers[i].getElementsByTagName("description")[0]; var description = descElement.firstChild.nodeValue; var titleElement = markers[i].getElementsByTagName("title")[0]; var title = titleElement.firstChild.nodeValue; var marker = createMarker(title,description); } } document.getElementById("foo").innerHTML = caption; } function GetXmlHttpObject() { var xmlHttp = null; try { // Firefox, Opera 8.0+, Safari xmlHttp = new XMLHttpRequest(); } catch(e) { // Internet Explorer try { xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlHttp; } function createMarker(title, description) { caption += '