function validator(theForm) 
	{
if 	(theForm.reqName.value == "")
		{
			alert("You must enter the patient's name!");
			theForm.reqName.focus();
			return (false);
		}	
else if  (theForm.reqDOB.value == "")
		{
			alert("You must enter the patient's date of birth!");
			theForm.reqDOB.focus();
			return (false);
		}
else if  (theForm.reqEmail.value == "")
		{
			alert("You must enter the patient's email!");
			theForm.reqEmail.focus();
			return (false);
		}
else if  (theForm.reqPhone.value == "")
		{
			alert("You must enter the patient's phone number!");
			theForm.reqPhone.focus();
			return (false);
		}
else if 	(theForm.reqInsuredName.value == "")
		{
			alert("You must enter the name of the insured person!");
			theForm.reqInsuredName.focus();
			return (false);
		}
else if  (theForm.reqInsuredDOB.value == "")
		{
			alert("You must enter the date of birth of the insured person!");
			theForm.reqInsuredDOB.focus();
			return (false);
		}
else if  (theForm.reqInsuredSSN.value == "")
		{
			alert("You must enter the social security number of the insured!");
			theForm.reqInsuredSSN.focus();
			return (false);
		}
else if  (theForm.reqRelationship.value == "")
		{
			alert("You must enter the insured person's relationship to the patient!");
			theForm.reqRelationship.focus();
			return (false);
		}
else if  (theForm.reqEmployer.value == "")
		{
			alert("You must enter the employer name!");
			theForm.reqEmployer.focus();
			return (false);
		}
else if  (theForm.reqInsuranceCo.value == "")
		{
			alert("You must enter the insurance company name!");
			theForm.reqInsuranceCo.focus();
			return (false);
		}
else if  (theForm.reqInsurancePhone.value == "")
		{
			alert("You must enter the insurance company phone number!");
			theForm.reqInsurancePhone.focus();
			return (false);
		}
else if  (theForm.reqPolicyNumber.value == "")
		{
			alert("You must enter the insurance policy number!");
			theForm.reqPolicyNumber.focus();
			return (false);
		}
	} 
