// JavaScript Document

function showQuestionFields() {
	document.getElementById('question_link').style.display = "none";
	document.getElementById('question_fields').style.display = "block";
}

function showAddressFields() {
	document.getElementById('address_link').style.display = "none";
	document.getElementById('address_fields').style.display = "block";
	document.getElementById('means_post').style.display = "block";
	
}
