		function validateForm(frmForm)
		{
			var strErrMsg = "";
			var strRequired = "";
			
			//OFFICE
			if (!(frmApplication.optOffice[0].checked || frmApplication.optOffice[1].checked || frmApplication.optOffice[2].checked))
			{
				strRequired += "Please select an office to send your application to.\n";
			}
			
			//PERSONAL INFORMATION
			if (frmApplication.txtName.value == "")
			{
				strRequired += "Name is required.\n";
			}

			if (frmApplication.txtEmail.value == "")
			{
				strRequired += "Email Address is required.\n";
			}
			
			if (frmApplication.txtPhone.value == "")
			{
				strRequired += "Telephone # is required.\n";
			}
			
			//WISE CAN ASSIST YOU TO
			if (!(frmApplication.chkWork.checked || frmApplication.chkSchool.checked || frmApplication.chkCareers.checked || frmApplication.chkImproveSkills.checked || frmApplication.chkComputers.checked || frmApplication.chkConfidence.checked || frmApplication.chkJobSearch.checked || frmApplication.chkResumes.checked || frmApplication.chkInterview.checked || frmApplication.chkMarketSkills.checked || frmApplication.chkEvaluateOffer.checked || frmApplication.chkApply.checked)) 
			{
				strRequired += "Please select an option to let us know how we can assist you.\n";
			}
			
			
			//HOW DID YOU HEAR
			if (!(frmApplication.chkWoman.checked || frmApplication.chkFriendFamily.checked || frmApplication.chkInformationSession.checked || frmApplication.chkAgencyReferral.checked || frmApplication.chkBrochureFlyer.checked || frmApplication.chkRadio.checked || frmApplication.chkTV.checked || frmApplication.chkNewspaper.checked || frmApplication.chkWebsite.checked || frmApplication.chkOther.checked)) 
			{
				strRequired += "Please select an option to tell us how you heard about the program.\n";
			}
			
			if (frmApplication.chkAgencyReferral.checked && (frmApplication.txtAgencyName.value == "" || frmApplication.txtAgencyContact.value == ""))
			{
				strRequired += "Please provide both the Agency name and contact.\n";
			}
			
			//CONSENT
			if (!frmApplication.chkConsent.checked)
			{
				strRequired += "You must accept the Consent to Release in order to submit your application.\n";
			}
			
			
			//SHOW MESSAGE BOX OR SUBMIT
			if (strRequired == "")
			{
				return true;
			}
			else
			{
				strErrMsg = "The following information is missing from your application:\n\n" + strRequired;
				alert(strErrMsg);
				return false;
			}
		}
