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

else if  (theForm.lastname.value == "")
		{
			alert("You must enter applicant's last name!");
			theForm.lastname.focus();
			return (false);
		}
else if  (theForm.dob.value == "")
		{
			alert("You must enter applicant's date of birth!");
			theForm.dob.focus();
			return (false);
		}
else if  (theForm.ssn.value == "")
		{
			alert("You must enter your Social Security Number!");
			theForm.ssn.focus();
			return (false);
		}
else if  (theForm.email.value == "")
		{
			alert("You must enter applicant's email!");
			theForm.email.focus();
			return (false);
		}
else if  (theForm.address.value == "")
		{
			alert("You must enter applicant's Home Address!");
			theForm.address.focus();
			return (false);
		}
else if  (theForm.city.value == "")
		{
			alert("You must enter applicant's City!");
			theForm.city.focus();
			return (false);
		}
else if  (theForm.state.value == "")
		{
			alert("You must enter applicant's State!");
			theForm.state.focus();
			return (false);
		}
else if  (theForm.zip.value == "")
		{
			alert("You must enter applicant's Zip Code!");
			theForm.zip.focus();
			return (false);
		}
else if  (theForm.res_years.value == "")
		{
			alert("You must enter applicant's Year's at Residence!");
			theForm.res_years.focus();
			return (false);
		}
else if  (theForm.home_status.value == "")
		{
			alert("You must enter applicant's Home Status!");
			theForm.home_status.focus();
			return (false);
		}
else if  (theForm.monthlypayment.value == "")
		{
			alert("You must enter applicant's Monthly Payment!");
			theForm.monthlypayment.focus();
			return (false);
		}
else if  (theForm.homephone.value == "")
		{
			alert("You must enter applicant's Home Phone Number!");
			theForm.homephone.focus();
			return (false);
		}
else if  (theForm.company.value == "")
		{
			alert("You must enter applicant's Employer!");
			theForm.company.focus();
			return (false);
		}
else if  (theForm.compyears.value == "")
		{
			alert("You must enter applicant's years at company!");
			theForm.compyears.focus();
			return (false);
		}
else if  (theForm.occupation.value == "")
		{
			alert("You must enter applicant's Occupation!");
			theForm.occupation.focus();
			return (false);
		}
else if  (theForm.workaddress.value == "")
		{
			alert("You must enter applicant's Company's Address!");
			theForm.workaddress.focus();
			return (false);
		}
else if  (theForm.workcity.value == "")
		{
			alert("You must enter applicant's Company's City!");
			theForm.workcity.focus();
			return (false);
		}
else if  (theForm.workstate.value == "")
		{
			alert("You must enter applicant's Company's State!");
			theForm.workstate.focus();
			return (false);
		}
else if  (theForm.workzip.value == "")
		{
			alert("You must enter applicant's Company's Zip Code!");
			theForm.workzip.focus();
			return (false);
		}
else if  (theForm.workphone.value == "")
		{
			alert("You must enter applicant's Company's Phone Number!");
			theForm.workphone.focus();
			return (false);
		}
else if  (theForm.salary.value == "")
		{
			alert("You must enter applicant's Salary!");
			theForm.salary.focus();
			return (false);
		}
else if  (theForm.procedure.value == "")
		{
			alert("You must choose the procedure/s that you are interested in!");
			theForm.procedure.focus();
			return (false);
		}
	} 