// JavaScript Document
function mostrarDiv(divId){
	div = document.getElementById(divId);
	div.style.visibility = 'inherit';
	div.style.display = 'block';
	div.style.height = 'auto';
	div.style.margin = '5px 0';
}


function ocultarDiv(divId){
	div = document.getElementById(divId);
	div.style.visibility = 'hidden';
	div.style.display = 'none';
	div.style.height = '0px';
}