
function submitReview() {
    // Change the form action to the real submission page
    document.getElementById('no-spam').action = "submit-restaurant.php";
    // Submit the form
    document.getElementById('no-spam').submit();
}

function writeReview() {
    // Change the form action to the real submission page
    document.getElementById('no-spam').action = "write-review.php";
    // Submit the form
    document.getElementById('no-spam').submit();
}

function submitContact() {
    // Change the form action to the real submission page
    document.getElementById('no-spam').action = "contactus.php";
    // Submit the form
    document.getElementById('no-spam').submit();
}