//Operating Status Definition
var xmlHttp_FHABlock

function showFHABlock(str)
{ 
xmlHttp_FHABlock=GetXmlHttpObject_FHABlock()
if (xmlHttp_FHABlock==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 }
var url="fha_block.php"
url=url+"?skey="+str
url=url+"&sid="+Math.random()
xmlHttp_FHABlock.onreadystatechange=stateFHABlockChanged 
xmlHttp_FHABlock.open("GET",url,true)
xmlHttp_FHABlock.send(null)
}

function stateFHABlockChanged() 
{ 
if (xmlHttp_FHABlock.readyState==4 || xmlHttp_FHABlock.readyState=="complete")
 { 
 document.getElementById("FHABlock").innerHTML=xmlHttp_FHABlock.responseText;
 } 
}

function GetXmlHttpObject_FHABlock()
{
var xmlHttp_FHABlock=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 xmlHttp_FHABlock=new XMLHttpRequest();
 }
catch (e)
 {
 //Internet Explorer
 try
  {
  xmlHttp_FHABlock=new ActiveXObject("Msxml2.XMLHTTP");
  }
 catch (e)
  {
  xmlHttp_FHABlock=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
return xmlHttp_FHABlock;
}
