document.write("<div id='navcontainer'> ");
document.write("<ul id='navlist'>");

document.write("");

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

var x=xmlDoc.getElementsByTagName("LINK");
for (i=0;i<x.length;i++)
  { 
  document.write("<li><a href='");
  document.write(x[i].getElementsByTagName("URL")[0].childNodes[0].nodeValue);
  document.write("'><b>");
  document.write(x[i].getElementsByTagName("NAME")[0].childNodes[0].nodeValue);
  document.write("</b></a></li>");
  }
  
document.write("</ul>");
document.write("</div>");
document.write("<br>");
document.write("</td>");
document.write("<td Height='600' width='610' background='site_graphics/bg.jpg'><br>");
