function validateFields(){		if ((document.search.city.value == "") 		&& (document.search.bdrms.value == "") 		&& (document.search.price.value == "") 		&& (document.search.name.value == "") )	{		/**Check for selection*/				alert("You must select at least one option to perform a search.");				document.search.city.focus();				return false;		}		if (document.search.city.value == "0") {				if (!confirm("You have selected all areas. This may take some time, as we have a LOT of properties!")) {					return false;				}		}			/**Submit the form.*/		return true;}function setcityidx(){		document.search.cityidx.value = document.search.city.selectedIndex;}function miniSearchSetup() {		addEvent(document.search.city,"change",setcityidx);	}
