var newwindow;
function popup(url,h,w,s)
{
	newwindow=window.open(url,'BY','height=' + h + ',width=' + w + ',scrollbars=' + s);
	if (window.focus) {newwindow.focus()}
}

function showMy()
{
	document.images.myhomepage.src = '/images/myhomepage_box_03.gif'
	
	getMy();
	curEl = document.getElementById('bub-myhomepage');
	curEl.style.display = 'inline';
}


function closebox()
{
	document.images.myhomepage.src = '/images/top-menu_05.gif';
	document.getElementById('bub-myhomepage').style.display = 'none';
}


function saveProperty(mlsnumber)
{
	var url = "../includes/process_ajax.asp?atn=saveProp&mls=" + mlsnumber
    
	xmlHttp=GetXmlHttpObject(stateChangedSaveProperty)
    xmlHttp.open("GET", url , true)
    xmlHttp.send(null)
}

function stateChangedSaveProperty()
{
    if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
    {
        if (xmlHttp.responseText=="success")
        {
        	document.getElementById("saveprop").innerHTML="<img class='tools' src='/images/checkmark_small.gif' /> Property Saved"
        	document.getElementById("saveprop-top").innerHTML="Property Saved"
        	}
        else {
			scroll(0,0);
			showMy();
        	}
   }
}

function stateChangedSaveSearch()
{
    if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
    {
        if (xmlHttp.responseText=="success")
        {
        	document.getElementById("bubbleCont").innerHTML="<h4>Search saved</h4><p><b>Your search has been saved successfully.</b><br/><a href='javascript:getMy();'>Click here to view</a><p>"
        	}
        else {
			if (xmlHttp.responseText != ""){
				document.images.myhomepage.src = '/images/myhomepage_box_03.gif'
				curEl = document.getElementById('bub-myhomepage');
				curEl.style.display = 'inline';
				document.getElementById("bubbleCont").innerHTML=xmlHttp.responseText;
			}
			else {scroll(0,0); showMy();}
        	}
   }
}