     function validate()
     { //Begin Function
	if
	    (	(document.emailform.first_name.value.length >0)
             && (document.emailform.last_name.value.length >0)
             && (document.emailform.req_email1.value.length >2)
             && (document.emailform.req_email2.value.length >2)
             && (document.emailform.passwd1.value.length >3)
             && (document.emailform.passwd2.value.length >3)
             && (document.emailform.passwd1.value == document.emailform.passwd2.value)
             && (document.emailform.contact.value.length >0)
             && (document.emailform.birth_month.value >0)
             && isNaN(document.emailform.birth_month.value) == false
             && (document.emailform.birth_day.value >0)
             && isNaN(document.emailform.birth_day.value) == false
             && (document.emailform.birth_year.value >0)
             && isNaN(document.emailform.birth_year.value) == false
            )
	//begin "if true"
	{ 
	    if (confirm("Your Ground Zero e-mail request is about to be submitted. Click Ok to Proceed.")) 
	       {document.emailform.submit(); return true;
	       }
	    else
	       {return false;
	       } 
	}
	//begin "if false"
	else
	{
	  alert("I'm sorry.  You have not completely filled in this form or your passwords do not match. Please read the field explanations below and try again.");
	}

     }