
		<!-- Hide script from older browsers 

            function validEmail(email) {
			invalidChars = " /:,;"
	
			if (email == "") {
				return false
			}
			for (i=0; i<invalidChars.length; i++) {
				badChar = invalidChars.charAt(i)
				if (email.indexOf(badChar,0) > -1) {
					return false
				}
			}
			atPos = email.indexOf("@",1)	
			if (atPos == -1) {
				return false
			}
			if (email.indexOf("@",atPos+1) != -1) {	
				return false
			}
			periodPos = email.indexOf(".",atPos)
			if (periodPos == -1) {			
				return false
			}
			if (periodPos+3 > email.length)	{	
				return false
			}
			return true
		}           

//		function isNum(passedVal) {	// Is this a number?
//			if (passedVal == "") {
//				return false
//			}
//			for (i=0; i<passedVal.length; i++) {
//				if (passedVal.charAt(i) < "0") {
//					return false
//				}
//				if (passedVal.charAt(i) > "9") {
//					return false
//				}
//			}
//			return true
//		}
		
//		function validZip(zip) {	
//
//			if (zip == "") {
//				return true
//			}
//			if (isNum(zip)) {						
//				return true
//			}
//			return false
//		}

		function validForm(data) {
			if (data.FirstName.value == "") {
				alert("Pls. enter your First Name!")
				data.FirstName.focus()
				return false
			}
			if (data.LastName.value == "") {
				alert("Pls. enter Last Name!")
				data.LastName.focus()
				return false
			}
			if (data.TelephoneHome.value == "") {
				alert("Pls. enter Telephone Home!")
				data.TelephoneHome.focus()
				return false
			}
            		if (!validEmail (data.email.value)) {
				alert("Invalid email address!")
				data.email.focus()
				data.email.select()
				return false
			}
			if (data.PriceRangeMin.value == "") {
				alert("Pls. enter Minimum Price Range!")
				data.PriceRangeMin.focus()
				return false
			}
			if (data.PriceRangeMax.value == "") {
				alert("Pls. enter Maximum Price Range!")
				data.PriceRangeMax.focus()
				return false
			}
			if (data.MoveInDate.value == "") {
				alert("Pls. enter Move In Date!")
				data.MoveInDate.focus()
				return false
			}
			if (data.WasherDyer.value == "") {
				alert("Pls. select Yes or No if you want Washer and Dyer connection!")
				data.WasherDyer.focus()
				return false
			}
			if (data.Pets.value == "") {
				alert("Pls. select Yes or No if you have Pets!")
				data.Pets.focus()
				return false
			}
			if (data.Pets30Above.value == "") {
				alert("Pls. select Yes or No if your Pets is 30 lbs. or more!")
				data.Pets30Above.focus()
				return false
			}
                	return true
			}
			
		
		// End hiding script -->
