var id_ultima_resposta = 0;

function hideElementById(id){
	document.getElementById(id).style.display = 'none';
}

function showElementById(id){
	document.getElementById(id).style.display = 'block';
}

function changeElementDisplayById(id){
	if(document.getElementById(id).style.display == 'none'){
		if(id_ultima_resposta !=0){
			hideElementById(id_ultima_resposta);
		}
		showElementById(id);
		id_ultima_resposta = id;
	}else{
		hideElementById(id);
	}
}