// JavaScript Document
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.open("GET","LatestNews.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML; 

var x=xmlDoc.getElementsByTagName("NEWS");
for (i=0;i<x.length;i++)
  { 
 
  document.write("<a style='text-decoration:none;' href='"+x[i].getElementsByTagName("URL")[0].childNodes[0].nodeValue+"' target='_blank'>" +  x[i].getElementsByTagName("TITLE")[0].childNodes[0].nodeValue + "</a>");
  document.write("<br /><br />");
  }

