function validator(theForm) 
	{
if 	(theForm.reqFirstName.value == "")
		{
			alert("You must enter applicant's first name!");
			theForm.reqFirstName.focus();
			return (false);
		}	

else if  (theForm.reqLastName.value == "")
		{
			alert("You must enter applicant's last name!");
			theForm.reqLastName.focus();
			return (false);
		}
else if  (theForm.reqDOB.value == "")
		{
			alert("You must enter applicant's date of birth!");
			theForm.reqDOB.focus();
			return (false);
		}
else if  (theForm.reqSSNumber.value == "")
		{
			alert("You must enter your Social Security Number!");
			theForm.reqSSNumber.focus();
			return (false);
		}
else if  (theForm.reqDLNumber.value == "")
		{
			alert("You must enter your Driver's License Number!");
			theForm.reqDLNumber.focus();
			return (false);
		}
else if  (theForm.reqEmail.value == "")
		{
			alert("You must enter applicant's email!");
			theForm.reqEmail.focus();
			return (false);
		}
else if  (theForm.reqAddress.value == "")
		{
			alert("You must enter applicant's Home Address!");
			theForm.reqAddress.focus();
			return (false);
		}
else if  (theForm.reqCity.value == "")
		{
			alert("You must enter applicant's City!");
			theForm.reqCity.focus();
			return (false);
		}
else if  (theForm.reqState.value == "")
		{
			alert("You must enter applicant's State!");
			theForm.reqState.focus();
			return (false);
		}
else if  (theForm.reqZip.value == "")
		{
			alert("You must enter applicant's Zip Code!");
			theForm.reqZip.focus();
			return (false);
		}
else if  (theForm.reqYears.value == "" && theForm.reqMonths.value == "")
		{
			alert("You must enter applicant's Year's at Residence!");
			theForm.reqYears.focus();
			return (false);
		}
else if  (theForm.reqHomeStatus.value == "")
		{
			alert("You must enter applicant's Home Status!");
			theForm.reqHomeStatus.focus();
			return (false);
		}
else if  (theForm.reqMonthlyPayment.value == "")
		{
			alert("You must enter applicant's Monthly Payment!");
			theForm.reqMonthlyPayment.focus();
			return (false);
		}
else if  (theForm.reqHomePhone.value == "")
		{
			alert("You must enter applicant's Home Phone Number!");
			theForm.reqHomePhone.focus();
			return (false);
		}
else if  (theForm.reqHear.value == "")
		{
			alert("Please tell us how you heard about us!");
			theForm.reqHear.focus();
			return (false);
		}
else if  (theForm.reqCompany.value == "")
		{
			alert("You must enter applicant's Employer!");
			theForm.reqCompany.focus();
			return (false);
		}
else if  (theForm.reqCompanyYears.value == "" && theForm.reqCompanyMonths.value == "")
		{
			alert("You must enter applicant's years at company!");
			theForm.reqCompanyYears.focus();
			return (false);
		}
else if  (theForm.reqOccupation.value == "")
		{
			alert("You must enter applicant's Occupation!");
			theForm.reqOccupation.focus();
			return (false);
		}
else if  (theForm.reqWorkAddress.value == "")
		{
			alert("You must enter applicant's Company's Address!");
			theForm.reqWorkAddress.focus();
			return (false);
		}
else if  (theForm.reqWorkCity.value == "")
		{
			alert("You must enter applicant's Company's City!");
			theForm.reqWorkCity.focus();
			return (false);
		}
else if  (theForm.reqWorkState.value == "")
		{
			alert("You must enter applicant's Company's State!");
			theForm.reqWorkState.focus();
			return (false);
		}
else if  (theForm.reqWorkZip.value == "")
		{
			alert("You must enter applicant's Company's Zip Code!");
			theForm.reqWorkZip.focus();
			return (false);
		}
else if  (theForm.reqWorkPhone.value == "")
		{
			alert("You must enter applicant's Company's Phone Number!");
			theForm.reqWorkPhone.focus();
			return (false);
		}
else if  (theForm.reqSalary.value == "")
		{
			alert("You must enter applicant's Salary!");
			theForm.reqSalary.focus();
			return (false);
		}
else if  (theForm.reqProcedureType.value == "")
		{
			alert("You must choose the procedure/s that you are interested in!");
			theForm.reqProcedureType.focus();
			return (false);
		}
	} 
