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

