// JavaScript Document
var xmlDoc=null;
if (window.XMLHttpRequest)
  {
  xmlDoc=new window.XMLHttpRequest();
  xmlDoc.open("GET","xml/this_site.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("xml/this_site.xml");
  }

if (xmlDoc!=null)
{ 
document.write("<a href='"+xmlDoc.getElementsByTagName("LOGOURL")[0].childNodes[0].nodeValue+"'>return</a>");
}