	function ValidateForm() {
	
		var obj
		obj = document.frmProviderSearch

// This is the orginal script. I have to figure out a way to make this more dynamic.		
//		if ((obj.selSpecificState.value == "") && (obj.txtZipCode.value == "") && (obj.selCounty.value == "")) {
//			alert("We are sorry, but you must either choose a specific state, enter a zip code, or choose one or more counties to search in.\nYou may also click the links that will take you specifically sorts by the Organization, City, or State.\n\n   Please select any of the allowed choices to search.");
//			return false;
		if (obj.txtZipCode.value == "") {
			alert("We are sorry, but you must enter a zip code to search in.\nYou may also click the links that will take you specifically sorts by the Last Name, Organization, City.\n\n   Please select any of the allowed choices to search.");
			return false;
		}

	}