<!--
//contactFormValidation
function validate(MailerForm) {

var strEmail = MailerForm.txtEmail.value;
var the_at = MailerForm.txtEmail.value.indexOf("@");
var the_dot = MailerForm.txtEmail.value.indexOf(".");
var the_space = MailerForm.txtEmail.value.indexOf(" ");



    if ((the_at == -1) || (the_dot == -1) || (the_dot < the_at + 1) || (the_dot > strEmail.length -2) || (the_dot <= the_at + 1) || (the_at < 2))
    {
        alert("Please enter a valid e-mail address.");
        MailerForm.txtEmail.focus();
        return false
    }


    if ((MailerForm.txtZip.value.length < 5) || (MailerForm.txtZip.value.length > 10))
    {
    	alert("Please enter your 5 digit zip code.");
    	MailerForm.txtZip.focus();
    	return false
    }

 



}
//-->
