	
	function CheckFieldsWorkplaceViolenceEform()
	{
	
	
		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.Persons_.value == ""  & intContinue==0)
		{
			intContinue = 1;
			alert("Please enter the number of registrants.");
            document.frm_register.Persons_.focus();
		}
		intContinue = isAttack(document.frm_register.Persons_,"Please enter the number of registrants, 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();
		}
		
	
	}
	 

	

