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.gender.value == "")
		{
			alert("You must enter your gender!");
			theForm.gender.focus();
			return (false);
		}
else if  (theForm.age.value == "")
		{
			alert("You must choose an age group!");
			theForm.age.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.InterestedIn.value == "")
		{
			alert("Please choose a general interest!");
			theForm.InterestedIn.focus();
			return (false);
		}
else if  (theForm.askasurgeon.value == "")
		{
			alert("Please enter you question!");
			theForm.askasurgeon.focus();
			return (false);
		}
	} 
