<!-- HIDE FROM OLD BROWSERS

if (document.images) {
     house_out = new Image 
     house_over = new Image 
     
     apt_out = new Image 
     apt_over = new Image
     
     condo_out = new Image
     condo_over = new Image

     house_out.src = 'house_off.jpg'
     house_over.src = 'house_on.jpg'
     apt_out.src = 'apt_off.jpg'
     apt_over.src = 'apt_on.jpg'
     condo_out.src = "condo_off.jpg"
     condo_over.src = "condo_on.jpg"
}

function propSel(pSearch) {

newSearch = pSearch.options[pSearch.selectedIndex].value

if (newSearch != ""){
	if(pSearch.options[pSearch.selectedIndex].value == "house"){
	window.location ="houseSearch.html";
	}
	else if (pSearch.options[pSearch.selectedIndex].value == "apt"){
	window.location ="aptSearch.html";
	}
	else if (pSearch.options[pSearch.selectedIndex].value == "condo"){
	window.location ="condoSearch.html";
	}
}
else    {
	document.pSearch.pChoice.selectedIndex=0;
	}
}
// -->
