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

function submitCommentFormStage() {
    // Change the form action to the real submission page
    document.getElementById('software-support_stage').action = "/support/tredir3_stage.php";
    // Submit the form
    document.getElementById('software-support_stage').submit();
}

function submitContactForm() {
    // Change the form action to the real submission page
    document.getElementById('myform').action = "sales-queries-success.php";
    // Submit the form
    document.getElementById('myform').submit();
}

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