
function submitForm(form) {
    
    switch (form.id) {
        case "frmNotify":
            if (validateField(form.txtEmail, "email", "Email Address", true, false) == false) { return false; }
            break;
    }
    
}