var xmlhttp;
				
function loadXMLDoc(url)
{
xmlhttp=null;
if (window.XMLHttpRequest)
  {// code for IE7, Firefox, Mozilla, etc.
  xmlhttp=new XMLHttpRequest();
  }
else if (window.ActiveXObject)
  {// code for IE5, IE6
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
if (xmlhttp!=null)
  {
  xmlhttp.onreadystatechange=onResponse;
  xmlhttp.open("GET",url,true);
  xmlhttp.send(null);
  }
else
  {
  alert("Your browser does not support XMLHTTP.");
  }
}

function onResponse()
{
if(xmlhttp.readyState!=4) return;
if(xmlhttp.status!=200)
  {
  alert("Problem retrieving XML data");
  return;
  }

txt = "<div id=\"fix\">";
x=xmlhttp.responseXML.documentElement.getElementsByTagName("item");
for (i=0;i<x.length;i++)
  {
  txt = txt + "<div id=\"news_box\"><h3 class=\"news_header\">";
  xx=x[i].getElementsByTagName("title");
    {
    try
      {
      txt=txt + xx[0].firstChild.nodeValue + "</h3>";
      }
    catch (er)
      {
      txt=txt + "<p> </p>";
      }
    }
  	xx=x[i].getElementsByTagName("description");
    {
    try
      {
      txt=txt + "<p>" + xx[0].firstChild.nodeValue + "</p>";
      }
    catch (er)
      {
      txt=txt + "<p> </p>";
      }
    }
  	xx=x[i].getElementsByTagName("read");
    {
    try
      {
      txt=txt + "<a href=\"" + xx[0].firstChild.nodeValue + "\">";
      }
    catch (er)
      {
      txt=txt + "<p> </p>";
      }
    }
  	xx=x[i].getElementsByTagName("call");
    {
    try
      {
      txt=txt + xx[0].firstChild.nodeValue + "</a>";
      }
    catch (er)
      {
      txt=txt + "<p> </p>";
      }
    }
  txt=txt + "</div>";
  }
  txt=txt + "</div>";
document.getElementById('copy').innerHTML=txt;
}