
function SubmitPropSearch(FormRef){
	if (FormRef.area.value == 0){
		alert("Please select an area to search");
	}else{
		FormRef.submit();
	}
}

function winPopup(pURL){
   var aWin = window.open(pURL,"","toolbar=0,location=0,status=0,menubar=1,scrollbars=1,height=470, width=680, screenX=50, screenY=50");
}

