<!--
function showChange(rent,price){
if (document.form1.rentORprice.value ==rent){
	document.form1.rentORprice.value = price;
	}
else{
	
	document.form1.rentORprice.value = rent;
	}

}

function fn_changeClass(id, class1, class2){
//get the id of the element you wish to change
	identity=document.getElementById(id);
	//alert(identity);
	//check what the current class is and swap it for the alternate class
	if(identity.className==class1){
		className=class2;
	}else{
		className=class1;
	};

	identity.className=className;
}
function changeReg(type){
searchType=document.getElementById('searchType').value;
//alert(searchType);
if (type == 'rent' )
{
window.location.href='PropertyFinder.asp?type=1';
} 
else
{
window.location.href='PropertyFinder.asp?type=2';
}
}
//-->


