
var xmlhttpppx;
var scriptURLLLLsx = "http://www.maraya2.com/editors/ta7reer.php";

//********************* show Customer's Home ***************************
function RenderHAYAA()
{

 

if(document.getElementById("getHAYAAData"))
{
 
 document.getElementById("getHAYAAData").innerHTML='<img src="http://www.maraya2.com/dimof/img/LoadingTabs.gif"  />';

xmlhttpppx=GetXmlHttpObjectttx();
if (xmlhttpppx==null)
  {
  alert ("    ,    ");
  return;
  }
 
 
var url=scriptURLLLLsx;  //alert(url);


xmlhttpppx.onreadystatechange=stateChangedddx;


xmlhttpppx.open("GET",url,true);
xmlhttpppx.send(null);
}


}

//****************************************************************
//****************************************************************
//****************************************************************

//****************************************************************

//****************************************************************
//****************************************************************
//****************************************************************

function stateChangedddx()
{
if (xmlhttpppx.readyState==4)
  {
  document.getElementById("getHAYAAData").innerHTML=xmlhttpppx.responseText;
  }
}

//****************************************************************

function GetXmlHttpObjectttx()
{
if (window.XMLHttpRequest)
  {
  // code for IE7+, Firefox, Chrome, Opera, Safari
  return new XMLHttpRequest();
  }
if (window.ActiveXObject)
  {
  // code for IE6, IE5
  return new ActiveXObject("Microsoft.XMLHTTP");
  }
return null;
}
