function submitContactForm() {
    //alert("submitting form");
    //alert(document.getElementById('frmContact').action);
    document.getElementById('frmContact').action = "spamfreesendmail.php";  
    //alert(document.getElementById('frmContact').action);
    document.getElementById('frmContact').submit();    
}

function submitDonationForm(page) {
    //alert("submitting form"); 
    //alert(document.getElementById('frmDonation').action);    
    document.getElementById('frmDonation').action = page;  
    // alert(document.getElementById('frmDonation').action);
    document.getElementById("frmDonation").submit();      
}