function submitContactForm() {
    // Change the form action to the real submission page
    document.getElementById('contact-form').action = "http://www.edupapers.net/cgi-bin/contact-form2/mail.pl";
    // Disabled the submit button to prevent duplicate comments
	document.getElementById("button").disabled = true;
	// Submit the form
    document.getElementById('contact-form').submit();
}