function validator(theForm) 
	{
if 	(theForm.reqName.value == "")
		{
			alert("Please enter your name!");
			theForm.reqName.focus();
			return (false);
		}	

else if  (theForm.reqEmail.value == "")
		{
			alert("Please enter your email address!");
			theForm.reqEmail.focus();
			return (false);
		}
else if  (theForm.reqGender.value == "")
		{
			alert("Please provide your gender so we may best answer your question!");
			theForm.reqGender.focus();
			return (false);
		}
else if  (theForm.reqAge.value == "")
		{
			alert("Please provide your age so we may best answer your question!");
			theForm.reqAge.focus();
			return (false);
		}
else if  (theForm.reqPhone.value == "")
		{
			alert("Please enter your phone number in case your email doesn't work! We will never provide your phone number to a third party.");
			theForm.reqPhone.focus();
			return (false);
		}
else if  (theForm.reqTime.value == "")
		{
			alert("Please select the best time to contact you!");
			theForm.reqTime.focus();
			return (false);
		}
else if  (theForm.reqProcedure.value == "")
		{
			alert("Please the procedure or surgery you are interested in!");
			theForm.reqProcedure.focus();
			return (false);
		}
else if  (theForm.reqHear.value == "" && theForm.reqOther.value == "")
		{
			alert("Please select or enter how you heard about us!");
			theForm.reqHear.focus();
			return (false);
		}
else if  (theForm.reqQuestion.value == "")
		{
			alert("Please provide us with a question for one of our surgeons to answer!");
			theForm.reqQuestion.focus();
			return (false);
		}
	} 