<!-- Begin

    function validate() {

    var theMessage = "";
    var noErrors = theMessage

    // Make sure a single checkbox is checked
    var boxCheck = false;
    if (document.form2.chkAgree.checked) {
    boxCheck = true; }
    if (!boxCheck) {
    theMessage = theMessage + "\n You must agree to the Terms and Conditions";
    }

    // If no errors, submit the form
    if (theMessage == noErrors) {
    return true;

    } else {

    // If errors were found, show alert message
    alert(theMessage);
    return false;
    }
    }
// End -->

