// JavaScript Document
function submitForm() {
    // Change the form action to the real submission page
    document.send_comment.action = "cfrm.php";
    // Submit the form
    document.send_comment.submit();
}