function validator(theForm) 
	{
if 	(theForm.user_name.value == "")
		{
			alert("You must enter your first and last name!");
			theForm.user_name.focus();
			return (false);
		}
else if  (theForm.user_email.value == "")
		{
			alert("You must enter an e-mail address!");
			theForm.user_email.focus();
			return (false);
		}
else if  (theForm.user_tel.value == "")
		{
			alert("You must enter your phone number!");
			theForm.user_tel.focus();
			return (false);
		}
else if  (theForm.timecontact.value == "")
		{
			alert("You must choose a time to contact you!");
			theForm.timecontact.focus();
			return (false);
		}
else if  (theForm.city_zip.value == "")
		{
			alert("Enter your city and zip code.");
			theForm.city_zip.focus();
			return (false);
		}
else if  (theForm.hear.value == "")
		{
			alert("How did you hear about us!");
			theForm.hear.focus();
			return (false);
		}
else if  (theForm.interests.value == "")
		{
			alert("Please choose a general interest!");
			theForm.interests.focus();
			return (false);
		}
else if  (theForm.specific.value == "")
		{
			alert("Please enter a specific interest!");
			theForm.specific.focus();
			return (false);
		}
	} 
