//Call featured property script

function getFeaturedProperty()
{
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
  {
  //alert ("Error...");
  return;
  } 
//var url="http://acresidahonew.localhost/acres_idaho/index.php/view_property/featureproperty/";

var url="http://acresidaho.com/acres_idaho/index.php/view_property/featureproperty/";

xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("GET","/acres_idaho/index.php/view_property/featureproperty",true);
xmlHttp.send(null);
}
	
function GetXmlHttpObject()
{
  var xmlHttp=null;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    }
  return xmlHttp;
}

function stateChanged() 
{ 
if (xmlHttp.readyState==4)
{ 
document.getElementById("featuredProperty").innerHTML=xmlHttp.responseText;
}
}


