<!--
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, "");
}

function quick_search() {
	if (document.adv_src_form.find.value == "" || document.adv_src_form.find.value == "type city OR county OR zipcode here") {
		alert('Please, fill the search field!');
		document.adv_src_form.find.focus();
		return false;
	}
	return true;
}

function qsearch_top2(){
	var f = document.qsearch_top.s.value;
	var re = /^\s*$/;
	if (re.exec(f) != null || f == "City or State or Zip Code"){
		return false;
	}
	else{
		return true;
	}
} 

function zip_verify(){
	if ( (document.qsearch2.s.value=='') || (document.qsearch2.s.value.match(/\D/g)) || (document.qsearch2.s.value.length < 3) ){
		return false;
	}
} 

-->