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

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

function submitRegisterForm() {
    // Change the form action to the real submission page
    // document.getElementById('registerform').action = "email-contact.php";
    // Submit the form
    document.getElementById('registerform').submit();
}

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