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