var xmlHttp;

function doPopup(url)
{
document.getElementById("popup-holder").style.display="block";
document.getElementById("overlay").style.display="block";
xmlHttp=GetXmlHttpObject()

if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 }
//var url="featured_property_gold.php"
//url=url+"?sid="+Math.random()
xmlHttp.onreadystatechange=stateChanged
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}

function stateChanged()
{
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 {
 document.getElementById("popup-holder").innerHTML=xmlHttp.responseText
 }
}


