    function validateForm(form) 
    { //This is the name of the function
    
        if (form.check.value != "") 
        { //This checks to make sure the field IS empty
           return false; //This prevents the form from being submitted
        }
        if (form.eName.value == "") 
        { //This checks to make sure the field is not empty
           alert("Please enter your name.\n\nThe message will NOT be sent without it."); //Informs user of empty field
           form.eName.focus( ); //This focuses the cursor on the empty field
           return false; //This prevents the form from being submitted
        }
        if (form.eEmail.value == "") 
        { //This checks to make sure the field is not empty
           alert("Please enter your Email address.\n\nThe message will NOT be sent without it."); //Informs user of empty field
           form.eEmail.focus( ); //This focuses the cursor on the empty field
           return false; //This prevents the form from being submitted
        }
        if (form.eRetype.value == "") 
        { //This checks to make sure the field is not empty
           alert("Please Reconfirm your Email address.\n\nThe message will NOT be sent without it."); //Informs user of empty field
           form.eRetype.focus( ); //This focuses the cursor on the empty field
           return false; //This prevents the form from being submitted
        }
        if (form.eMessage.value == "") 
        { //This checks to make sure the field is not empty
           alert("Please enter your message.\n\nThe message will NOT be sent without it."); //Informs user of empty field
           form.eMessage.focus( ); //This focuses the cursor on the empty field
           return false; //This prevents the form from being submitted
        }
    }
