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