<!--
function goto_county(st, county) { 
	if(county.length!=0)
		document.location="/homes/"+county+".html"; 
}
function goto_city(st, county, fips, city) {
	if (city.length==0) {
		document.location="/homes/"+county+".html";
	} else {
		document.location="/homes/county"+fips+"/"+city+".html";
	}	
}
function goto_zipcode(st, county, zipcode) {
	if (zipcode.length==0) {
		document.location="/homes/"+county+".html";
	} else {
		document.location="/homes/zipcode-"+zipcode+".html";
	}
}
function bookmarksite(title, url) {
	if (document.all) window.external.AddFavorite(url, title);
	else if (window.sidebar) window.sidebar.addPanel(title, url, "");
}
-->
