var xmlHttp6;
function getIsrael()
{
 
xmlHttp6=GetXmlHttpObject2();
if (xmlHttp6==null)
  {
  alert ("Your browser does not support AJAX Please Contact Administrator!");
  return;
  } 
var url="GetIsrael.php";
 
xmlHttp6.onreadystatechange=stateChanged2;
xmlHttp6.open("GET",url,true);
xmlHttp6.send(null);

}//get_egazat_control_value() function 

function stateChanged2() 
{ 
if (xmlHttp6.readyState==4)
{    
 
  info=xmlHttp6.responseText;//contain id_username of the current user.....
    document.getElementById("isreal").innerHTML=info;
 }//if readystate==4
 
 else{
    document.getElementById("isreal").innerHTML="<img src='images/load.gif' />";
 }//else not in ready state yet

}//statechange function

function GetXmlHttpObject2()
{
var xmlHttp6=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp6=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp6=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp6=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp6;
}//getxmlhttpobject




