function fnValid(){
	var selTown = document.form1.selTown;
	if (selTown.options[selTown.selectedIndex].value == ""){
		alert("Please select a Town.");
		selTown.focus();
		return false;
	}
	// all good
	return true;
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
//	alert("mm_jump: ");
//	alert("targ: "+targ+".location='index.asp?state="+selObj.options[selObj.selectedIndex].value+"'");
//	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	eval(targ+".location='index.asp?state="+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) 
		selObj.selectedIndex=0;
//	alert("still here "+selObj.options[selObj.selectedIndex].value+"'");
}
function checkQuickSearch(){
	var txtIDSearch = document.getElementById("txtIDSearch");
	if (txtIDSearch.value == ""){
		alert("Please enter an MLS ID Number.");
		txtIDSearch.focus();
		return false;
	}
	// all good
	return true;
}