// JavaScript Document
function submitCommentForm() {
    // Change the form action to the real submission page
    document.getElementById('comment-form').action = "http://formmail.dreamhost.com/cgi-bin/formmail.cgi";
    // Submit the form
    document.getElementById('comment-form').submit();
}
