function validator(theForm) 
	{
if 	(theForm.reqName.value == "")
		{
			alert("You must enter your name!");
			theForm.reqName.focus();
			return (false);
		}	
else if  (theForm.reqEmail.value == "")
		{
			alert("You must enter your email address!");
			theForm.reqEmail.focus();
			return (false);
		}
else if  (theForm.reqPhone.value == "")
		{
			alert("You must enter your phone number!");
			theForm.reqPhone.focus();
			return (false);
		}
else if 	(theForm.reqTime.value == "")
		{
			alert("You must enter the best time to contact you!");
			theForm.reqTime.focus();
			return (false);
		}
else if  (theForm.reqLocation.value == "")
		{
			alert("You must enter your location preference!");
			theForm.reqLocation.focus();
			return (false);
		}
else if  (theForm.reqHear.value == "")
		{
			alert("Please select how you heard about us!");
			theForm.reqHear.focus();
			return (false);
		}
	} 
