var xmlDoc;
if (window.XMLHttpRequest)
  {
  xhttp=new XMLHttpRequest();
  }
else // Internet Explorer 5/6
  {
  xhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xhttp.open("GET","../js/gigss.xml",false);
xhttp.send("");
xmlDoc=xhttp.responseXML;

var x=xmlDoc.getElementsByTagName("GIG");
i=0;

function display()
{
date=(x[i].getElementsByTagName("DATE")[0].childNodes[0].nodeValue);
podium=(x[i].getElementsByTagName("PODIUM")[0].childNodes[0].nodeValue);
place=(x[i].getElementsByTagName("PLACE")[0].childNodes[0].nodeValue);
time=(x[i].getElementsByTagName("TIME")[0].childNodes[0].nodeValue);
txt= date + "<br />" + podium + "<br />"+ place + "<br />" +  time;
document.getElementById("show").innerHTML=txt;
}
