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.areacode.value == "")
		{
			alert("You must enter your area code!");
			theForm.areacode.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.hear.value == "")
		{
			alert("How did you hear about us!");
			theForm.hear.focus();
			return (false);
		}
else if  (theForm.center.value == "")
		{
			alert("Please choose a center!");
			theForm.center.focus();
			return (false);
		}
else if  (theForm.interests.value == "")
		{
			alert("Please enter a specific interest!");
			theForm.interests.focus();
			return (false);
		}
	}