function showContactForm() {
	document.getElementById('commonForm').style.display='block';
    document.getElementById('submitForm').style.display='block';
    if (document.contactMailingForm.action[0].checked) {
    	document.getElementById('contactForm').style.display='block';
		document.getElementById('mailingForm').style.display='none';
    }
}

function showMailingForm() {
	document.getElementById('commonForm').style.display='block';
    document.getElementById('submitForm').style.display='block';
    if (document.contactMailingForm.action[1].checked) {
    	document.getElementById('mailingForm').style.display='block';
		document.getElementById('contactForm').style.display='none';
    }
}