var xmlDoc;
if (window.XMLHttpRequest)
  {
  xmlDoc=new window.XMLHttpRequest();
  xmlDoc.open("GET","http://www.pc-games-and-reviews.com/support-files/menudata.xml",false);
  xmlDoc.send("");
  xmlDoc=xmlDoc.responseXML;
  }
// IE 5 and IE 6
else if (ActiveXObject("Microsoft.XMLDOM"))
  {
  xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
  xmlDoc.async=false;
  xmlDoc.load("http://www.pc-games-and-reviews.com/support-files/menudata.xml");
  }


document.write("<tr><td style='background: transparent url(http://www.pc-games-and-reviews.com/images/rightPanelMid.jpg) repeat scroll; vertical-align: top; text-align: center;'>");

document.write("<div style='font-size:11px'>");
document.write("Latest Game Reviews :: Click images to read<br>");
document.write("</div>");

document.write("<div style='font-size:2px'>");

var x=xmlDoc.getElementsByTagName("linkitem");
for (i=0;i<x.length;i++)
  {
  document.write("<a href='");
  document.write(x[i].getElementsByTagName("textlink")[0].childNodes[0].nodeValue);
  document.write("'><img src='");
  document.write(x[i].getElementsByTagName("imagelink")[0].childNodes[0].nodeValue);
  document.write("' border='0'/></a><br><br>");  
  }

document.write("</div>");