function muestra(id){
	   document.getElementById(id).style.display = "block";
}
		
function oculta(id){
		document.getElementById(id).style.display = "none";
}