<!-- //hide the script
function form_validator(theForm)
{

	if(theForm.realname.value == "") {
		 alert("Please enter your Full Name.");
		 theForm.realname.focus();
		 return(false);
	}

	if(theForm.email.value == "") {
		 alert("Please enter your Email Address.");
		 theForm.email.focus();
		 return(false);

	}

	if(theForm.PhoneArea.value == "") {
		 alert("Please enter your Area Code.");
		 theForm.PhoneArea.focus();
		 return(false);

	}
	
	if(theForm.PhonePrefix.value == "") {
		 alert("Please enter your Telephone Number Prefix.");
		 theForm.PhonePrefix.focus();
		 return(false);

	}
	
	if(theForm.PhoneSuffix.value == "") {
		 alert("Please enter the last 4 digits of your phone number.");
		 theForm.PhoneSuffix.focus();
		 return(false);

	}
	
	if(theForm.BestTimeToContact.value == "") {
		 alert("Please enter the best time to contact you.");
		 theForm.BestTimeToContact.focus();
		 return(false);

	}
	
	if(theForm.StreetName.value == "") {
		 alert("Please enter your Street Name.");
		 theForm.StreetName.focus();
		 return(false);

	}
	
	if(theForm.City.value == "") {
		 alert("Please enter your City.");
		 theForm.City.focus();
		 return(false);

	}
	
	if(theForm.State.value == "") {
		 alert("Please enter your State.");
		 theForm.State.focus();
		 return(false);

	}
	
	if(theForm.ZipCode.value == "") {
		 alert("Please enter your Zip Code.");
		 theForm.ZipCode.focus();
		 return(false);

	}
	
	if(theForm.TypeOfHome.value == "") {
		 alert("Please enter your Type of Home.");
		 theForm.TypeOfHome.focus();
		 return(false);

	}
	
	if(theForm.StyleOfHome.value == "") {
		 alert("Please enter your Style of Home.");
		 theForm.StyleOfHome.focus();
		 return(false);

	}
	
	if(theForm.noBedrooms.value == "") {
		 alert("Please enter the Number of Bedrooms.");
		 theForm.noBedrooms.focus();
		 return(false);

	}
	
	if(theForm.noBaths.value == "") {
		 alert("Please enter the Number of Baths.");
		 theForm.noBaths.focus();
		 return(false);

	}
	
	if(theForm.FinishedSquareFootage.value == "") {
		 alert("Please enter the finished square footage.");
		 theForm.FinishedSquareFootage.focus();
		 return(false);

	}
	
	if(theForm.YearBuilt.value == "") {
		 alert("Please enter the year your home was built.");
		 theForm.YearBuilt.focus();
		 return(false);

	}
	
	return (true);
}
// end script hiding -->