
function submitCommentForm(){
    // Change the form action to the real submission page
    document.getElementById('comment-form').action = "sendemail.asp";
    // Submit the form
    document.getElementById('comment-form').submit();
}
