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


var x=xmlDoc.getElementsByTagName("item");
for (i=0;i<x.length;i++)
  {
  
  document.write(x[i].getElementsByTagName("label")[0].childNodes[0].nodeValue);
  
  }
