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

