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