function validator(theForm) 
{
	var returnval;	
	
	returnval = true;
		
	if 	(theForm.user_name.value == "")
			{
				alert("You must enter your first and last name!");
				theForm.user_name.focus();
				returnval = false;
			}
	else if  (theForm.gender.value == "")
			{
				alert("You must enter your gender!");
				theForm.gender.focus();
				returnval = false;
			}
	else if  (theForm.user_email.value == "")
			{
				alert("You must enter an e-mail address!");
				theForm.user_email.focus();
				returnval = false;
			}
	else if  (theForm.age.value == "")
			{
				alert("You must choose an age group!");
				theForm.age.focus();
				returnval = false;
			}
	else if  (theForm.user_tel.value == "")
			{
				alert("You must enter your phone number!");
				theForm.user_tel.focus();
				returnval = false;
			}
	else if  (theForm.hear.value == "")
			{
				alert("How did you hear about us!");
				theForm.hear.focus();
				returnval = false;
			}
	else if  (theForm.InterestedInPlastic.checked == false && theForm.InterestedInHealth.checked == false && theForm.InterestedInLaser.checked == false && theForm.InterestedInDentistry.checked == false && theForm.InterestedInLasik.checked == false && theForm.InterestedInFemale.checked == false && theForm.InterestedInPodiatry.checked == false && theForm.InterestedInWeightLoss.checked == false && theForm.InterestedInOther.checked == false)
			{
				alert("Please choose a general interest!");
				theForm.InterestedInPlastic.focus();
				returnval = false;
			}
	else if  (theForm.askasurgeon.value == "")
			{
				alert("Please enter you question!");
				theForm.askasurgeon.focus();
				returnval = false;
			}
	
	return returnval;
} 
