// JavaScript Document
function mostrarInfo(nombre){
	document.getElementById(nombre).style.display="block";	
	document.getElementById(nombre).style.height="auto";
}
function ocultarInfo(nombre){
	document.getElementById(nombre).style.display="none";
	document.getElementById(nombre).style.height="0";	
}
function actualizando(mensaje){
	alert(mensaje);
	window.history.go(-1);
}
