<!-- Begin
function selectJump(whichForm) {
	var brValue = whichForm.buyorrent.value;
	var ptValue = whichForm.sear_ptyp.selectedIndex - 1;
	internal_link();
	if ( typeof calledfromroot != "undefined" && calledfromroot != null && calledfromroot == true  )
	{
	  document.location.href = "search/index-" + brValue + "-" + ptValue + ".html";
    }
    else
    {
	  document.location.href = "../search/index-" + brValue + "-" + ptValue + ".html";
    }
	//this[this.selectedIndex].value
}
function selectSubmit(whichForm) {
	if (whichForm.sear_ptyp.selectedIndex == 0) {
		alert("Please select a property type");
		return false;
	} else {
		selectJump(whichForm);
		return true;
	}
}
//  End -->