    <!--
    // E-mail Form - Validator
    // Bravenet Web Services - www.bravenet.com
    function checkData() {
    var correct = true
    if (document.Bravenet.name.value == "") {correct = false; alert("Please enter your name!")}
    if (document.Bravenet.replyemail.value == "") {correct = false; alert("Please enter your e-mail address.")}
    if (document.Bravenet.comment.value == "") {correct = false; alert("Please enter your comment.")}
    /*
    You can add more variables above.
    The name after the word Bravenet has to match the name in the form below.
    */
    if (correct){alert("Thank you for taking your time to fill out this form.")}
    return correct
    }
    //-->
