	
	function CheckFieldsEmployerInfoEform()
	{
		intContinue = 0;
				
		if (document.frm_register.FirstName_.value == ""  & intContinue==0){
			intContinue = 1;
			alert("Please enter your First Name.");
            document.frm_register.FirstName_.focus();
		}
		intContinue = isAttack(document.frm_register.FirstName_,"Please enter FirstName, with no special characters.",0);
	
		if (document.frm_register.LastName_.value == ""  & intContinue==0){
			intContinue = 1;
			alert("Please enter your Last Name.");
            document.frm_register.LastName_.focus();
		}
		intContinue = isAttack(document.frm_register.LastName_,"Please enter LastName, with no special characters.",0);
				
		if (document.frm_register.Phone_.value == "" & intContinue==0){
			intContinue = 1;
			alert("Please enter a phone number with area code.");
            document.frm_register.Phone_.focus();
		}
		intContinue = isAttack(document.frm_register.Phone_,"Please enter Phone, with no special characters.",0);

		 if ((!isEmailAddr(document.frm_register.EmailAddress_.value)) & intContinue==0) {   			
			if (document.frm_register.EmailAddress_.value == "" & intContinue==0){
			intContinue = 1;
			alert("Please enter only one valid email address, with no spaces.");
   		    document.frm_register.EmailAddress_.focus();
			} else {			
			intContinue = 1;
			alert("Please enter only one valid email address, with no spaces.");
   		    document.frm_register.EmailAddress_.focus();
		    }			   		 
  		}
		intContinue = isAttack(document.frm_register.EmailAddress_,"Please enter EmailAddress, with no special characters.",0);

		if (document.frm_register.CompanyName_.value == "" & intContinue==0){
			intContinue = 1;
			alert("Please enter your Company Name.");
            document.frm_register.CompanyName_.focus();
		}
		intContinue = isAttack(document.frm_register.CompanyName_,"Please enter CompanyName, with no special characters.",0);
				
		if (document.frm_register.Street_.value == "" & intContinue==0){
			intContinue = 1;
			alert("Please enter your Street address.");
            document.frm_register.Street_.focus();
		}
		intContinue = isAttack(document.frm_register.Street_,"Please enter Street, with no special characters.",0);
				
		if (document.frm_register.City_.value == "" & intContinue==0){
			intContinue = 1;
			alert("Please enter your City.");
            document.frm_register.City_.focus();
		}			 
		intContinue = isAttack(document.frm_register.City_,"Please enter City, with no special characters.",0);

		if (document.frm_register.PostalCode_.value == "" & intContinue==0){
			intContinue = 1;
			alert("Please enter your PostalCode.");
            document.frm_register.PostalCode_.focus();
		}
		intContinue = isAttack(document.frm_register.PostalCode_,"Please enter PostalCode, with no special characters.",0);
		
		if (document.frm_register.Account_.value == "" & intContinue==0){
			intContinue = 1;
			alert("Please enter your WCB Account #.");
            document.frm_register.Account_.focus();
		}
		
		if (isNaN(document.frm_register.Account_.value) & intContinue==0){
			intContinue = 1;
			alert("Incorrect WCB Account # format.");
            document.frm_register.Account_.focus();
		}
		intContinue = isAttack(document.frm_register.Account_,"Please enter Account, with no special characters.",0);
		
		if (document.frm_register.chkYes.checked == false & document.frm_register.chkNo.checked == false) {
			intContinue = 1;
			alert("Please indicate if you are a third party employer representative or not.");
            document.frm_register.chkYes.focus();
		}
		
		if (/[a-zA-Z]/.test(document.frm_register.Account_2.value) == true & intContinue==0){
			intContinue = 1;
			alert("Incorrect WCB Employer Account # format.");
            document.frm_register.Account_2.focus();
		}
		
		if (document.frm_register.chkYes.checked == true & document.frm_register.Account_2.value == "") {
			intContinue = 1;
			alert("Please enter the WCB Account # of the employer you represent.");
            document.frm_register.Account_2.focus();
		}
		
		if (document.frm_register.Persons_.value == "0" & intContinue==0){
			intContinue = 1;
			alert("Please indicate # of people registering. Maximum of 3.");
            document.frm_register.Persons_.focus();
		}
		intContinue = isAttack(document.frm_register.Persons_,"Please enter # of People, with no special characters.",0);
		
		if (document.frm_register.RegFN_1.value == ""  & intContinue==0){
			intContinue = 1;
			alert("Please enter the First Name of each registrant.");
            document.frm_register.RegFN_1.focus();
		}
		intContinue = isAttack(document.frm_register.RegFN_1,"Please enter the First Name of each registrant, with no special characters.",0);
		
		if (document.frm_register.RegLN_1.value == ""  & intContinue==0){
			intContinue = 1;
			alert("Please enter the Last Name of each registrant.");
            document.frm_register.RegLN_1.focus();
		}	
		intContinue = isAttack(document.frm_register.RegLN_1,"Please enter the Last Name of each registrant, with no special characters.",0);
		
		if (document.frm_register.RegJT_1.value == ""  & intContinue==0){
			intContinue = 1;
			alert("Please enter the Job Title of each registrant.");
            document.frm_register.RegJT_1.focus();
		}
		intContinue = isAttack(document.frm_register.RegJT_1,"Please enter the Job Title of each registrant, with no special characters.",0);
				
    	if (document.frm_register.Date_.value == "0" & intContinue==0){
			intContinue = 1;
			alert("Please select a date. Also note, the class may be full. Please select appropriately.");
            document.frm_register.Date_.focus();
		}		
		
		
		if (intContinue == 0){
			document.frm_register.submit();
		}
		
	
	}
