// function ContactInfo(loc) { var Email = ''; URL = "User_Info.asp?Email="+Email+"&RoS=&HomePath=&loc="+loc; window.open(URL,"myPortFolio","width=400,height=535,left=0,top=0,resizable=yes,scrollbars=yes"); } function jumpSearchIndex(valCountyIds,valRegionIds) { document.jumpSearchIndex.RegionIds.value = valRegionIds; document.jumpSearchIndex.CountyIds.value = valCountyIds; document.jumpSearchIndex.submit(); } function jumpMap(valCountyIds) { /* JR 04.08.2005 - this value of zero was allowing a search without choosing anything document.jumpSearchIndex.RegionIds.value = '0'; */ document.jumpSearchIndex.RegionIds.value = ''; document.jumpSearchIndex.CountyIds.value = valCountyIds; document.jumpSearchIndex.action = "search.asp"; document.jumpSearchIndex.submit(); } function ChangeUser(loc) { var tw = 270; var th = 175; var nsX = (800 - tw) / 2; var nsY = (600 - th) / 2; URL = "GetEmail.asp?loc="+loc+"&RoS=&HomePath="; window.open(URL,"","width=270,height=175,top="+nsY+",left="+nsX+",resizable=no"); } function checkCitySearch() { if ((document.CitySearch.CityName.value.length < 3) || (document.CitySearch.CityName.value == "-- Enter City --")) { alert("Please Enter A City Name For Your Search."); document.CitySearch.CityName.focus(); return false; } return true; } function SearchParChecking() { var areas = ""; var ccount = 0; if (document.selectCounties.seCounties.length) { for(x=0;x -1) { //alert(areas); areasArray = areas.split(","); if (areasArray.length > 16) { window.alert("You may only select up to 16 areas for your search."); document.selectCounties.seCounties[i].checked = false; return; } else { document.FinalForm.action = "SearchCriteria.asp"; document.FinalForm.CountyIds.value = areas; document.FinalForm.CountyIdCount.value = areasArray.length; document.FinalForm.submit(); } } else { document.FinalForm.action = "Search.asp"; document.FinalForm.CountyIds.value = areas; document.FinalForm.CountyIdCount.value = 1; document.FinalForm.submit(); } } } function checkCountyCount(arrOrder) { var ccount = 0; for(x=0;x 16) { window.alert("You may select up to 16 counties per search."); document.selectCounties.seCounties[arrOrder].checked = false; } }