﻿function validate_homeContact(theForm) {

    var valid = true;

    if (theForm.txtFirstName.value == "") {
        alert("Please enter your 'First Name'.");
        valid = false;
    }
    if (theForm.txtLastName.value == "") {
        alert("Please enter your 'Last Name'.");
        valid = false;
    }

    if (theForm.txtPhone.value == "") {
        alert("Please enter your 'Phone Number'.");
        valid = false;
    }
    if (theForm.txtEmail.value == "") {
        alert("Please enter your 'E-mail Address'.");
        valid = false;
    }
    if (!theForm.chkTOU.checked) {
        alert("Please read the Terms of Use and then check that you have done so.");
        valid = false;
    }

    if (theForm.txtCaptcha.value != "EXPOSURE") {
        alert("Please enter the correct word at the bottom of the form. It is case sensitive.");
        valid = false;
    }
            
    return valid;
}

function validate_Contact(theForm) {
    var valid = true;
    
    if (theForm.txtFirstName.value == "") {
        alert("Please enter your 'First Name'.");
        valid = false;
    }
    if (theForm.txtLastName.value == "") {
        alert("Please enter your 'Last Name'.");
        valid = false;
    }

    if (theForm.txtPhone.value == "") {
        alert("Please enter your 'Phone Number'.");
        valid = false;
    }
    if (theForm.txtEmail.value == "") {
        alert("Please enter your 'E-mail Address'.");
        valid = false;
    }
    if (theForm.referral.selectedIndex == 0) {
        alert("Please select how you heard about us.");
        valid = false;
    }

    if (theForm.txtCaptcha.value != "BEAUTIFUL") {
        alert("Please enter the correct word at the bottom of the form. It is case sensitive.");
        valid = false;
    }

    return valid;
}

function touOpen() {
    var newwindow;
    newwindow = window.open('/termsofuse.html', 'TermsOfUse', 'height=330, width=375, resizeable=no');
    if (window.focus) {
        newwindow.focus()
    }
}
