var  URL = window.location.protocol + "//" + window.location.host;
function getXML(obj)
{
 URL = URL + obj;
 var xmlhttp = new ActiveXObject("microsoft.xmlhttp");
 xmlhttp.Open("GET",URL, false);
 try
 {
  xmlhttp.Send();
 }
 catch(e){}
 finally
 {
  var result = xmlhttp.responseText;
  if(result)
  {
   if(xmlhttp.Status==200)
   {
    return(true);
   }
   else
   {
    return(false);
   }
  }
  else
  {
   return(false);
  }
 }
}

function frameResize(){
document.getElementById("cFF").style.height=cF.document.body.scrollHeight+20+"px";
}