//Call featured property script
function getFeaturedProperty(){
    xmlHttp = GetXmlHttpObject()
    
    
    if (xmlHttp == null) {
        //alert ("Error...");
        return;
    }
    
   var url = "http://www.gbyers.com/moscow-idaho-real-estate/featuredPropertyNew.php";
//   var url = "http://www.gbyers.com/moscow_idaho_real_estate/featuredPropertyNew.php";
// var url = "http://gbyers.localhost/moscow_idaho_real_estate/featuredPropertyNew.php";   
    xmlHttp.onreadystatechange = stateChanged;
    xmlHttp.open("POST", url, 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;
    }
}

