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.bday.value == "")
		{
			alert("You must enter your birth of date!");
			theForm.bday.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.city.value == "")
		{
			alert("You must enter the name of the city you live in!");
			theForm.city.focus();
			return (false);
		}
else if  (theForm.zip.value == "")
		{
			alert("You must enter your city's zip code!");
			theForm.zip.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.location.value == "")
		{
			alert("You must choose a location!");
			theForm.location.focus();
			return (false);
		}
else if  (theForm.hear.value == "")
		{
			alert("How did you hear about us?");
			theForm.hear.focus();
			return (false);
		}
	} 