function loadXMLDoc(dname)
{
if (window.XMLHttpRequest)
  {
  xhttp=new XMLHttpRequest();
  }
else
  {
  xhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xhttp.open("GET",dname,false);
xhttp.send();
return xhttp.responseXML;
} 
function news()
{
xmlDoc=loadXMLDoc("vesti.xml");

naslovi=xmlDoc.getElementsByTagName("naslov");
datumi=xmlDoc.getElementsByTagName("datum");
tekstovi=xmlDoc.getElementsByTagName("tekst");
linkovi=xmlDoc.getElementsByTagName("link");

for (i=0;i<naslovi.length;i++)
  { 
	document.write("<div><h2>"+naslovi[i].childNodes[0].nodeValue+"</h2>");
  	document.write('<p class="date">'+datumi[i].childNodes[0].nodeValue+"</p>");
  	document.write("<p>"+tekstovi[i].childNodes[0].nodeValue);
  	if ((""+linkovi[i].childNodes[0].nodeValue) != "?")
  	{
  		if( linkovi[i].getAttribute('of') == 1){
			document.write(' <a target="_blank" href="'+linkovi[i].childNodes[0].nodeValue+'">Official page</a>.');
		}
		else {
			document.write(' <a target="_blank" href="'+linkovi[i].childNodes[0].nodeValue+'">More...</a>');
		}
  	}
  	document.write("</p></div>") 
  }
}