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