var xmlDoc;
if (window.XMLHttpRequest)
  {
  xmlDoc=new window.XMLHttpRequest();
  xmlDoc.open("GET","http://www.pc-games-and-reviews.com/support-files/guidelist.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/guidelist.xml");
  }



document.write("<table style='width: 500px; text-align: center; margin-left: auto; margin-right: auto;' align='center' border='0' cellpadding='0' cellspacing='0'>");

var x=xmlDoc.getElementsByTagName("tditem");
for (i=0;i<x.length;i++)
  {
      document.write("<tr>");
      document.write("<td style='width: 400px; text-align: left;'>");
      document.write("<div style='font-size:20px'>");
      document.write("<a href='" + x[i].getElementsByTagName("reviewlink")[0].childNodes[0].nodeValue + "'>");
      document.write("<b>" + x[i].getElementsByTagName("title")[0].childNodes[0].nodeValue + "</b>");
      document.write("</a>");
      document.write("</div><br>");

      document.write("<b>Description:</b> " + x[i].getElementsByTagName("description")[0].childNodes[0].nodeValue + "<br>");

      document.write("</td>");
      
      document.write("<td style='width: 100px; text-align: center;'>");
      document.write("<a href='" + x[i].getElementsByTagName("reviewlink")[0].childNodes[0].nodeValue + "'>");
      document.write("<img style='border:0;' src='" + x[i].getElementsByTagName("imagelink")[0].childNodes[0].nodeValue + "' align='right' width='100' alt='click to read review'></a>");
      document.write("</td>");
      document.write("</tr>");

      document.write("<tr style='height: 5px;'><td colspan='3'><hr size='1' width='50%' align='Center'></td></tr>");

   }

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