     function validate()
     { //Begin Function
		if
		    (	(document.SignUpNowForm.txtFName.value.length >0)
		         && (document.SignUpNowForm.txtLName.value.length >0)
		         && (document.SignUpNowForm.txtAddr1.value.length >0)
		         && (document.SignUpNowForm.txtCity.value.length >0)
		         && (document.SignUpNowForm.txtState.value.length >0)
		         && (document.SignUpNowForm.txtZip.value.length >0)
		         && (document.SignUpNowForm.txtPhone.value.length >0)
		         && (document.SignUpNowForm.txtSchool.value.length >0)
		         && (document.SignUpNowForm.txtGrade.value.length >0)
		         && (document.SignUpNowForm.txtBirthday.value.length >0)
		         && (document.SignUpNowForm.txtAge.value.length >0)
		         && (document.SignUpNowForm.chk1.checked)  
		        )
		//begin "if true"
		{ 
			if (confirm("Your sign up form is about to be submitted. Click Ok to Proceed.")) 
			   {document.SignUpNowForm.submit(); return true;
			   }
			else
			   {return false;
			   } 
		}
		//begin "if false"
		else
		{
			alert("I'm sorry.  You have not completely filled in this form. \nPlease make sure that you have filled in the correct \ninformation in EVERY feild and that you have \nselected at least one meeting time.");
		}

     }
