// JavaScript Document

function mostrar(obj){
	document.getElementById(obj).style.display = "inline";
}

function esconder(obj){
	document.getElementById(obj).style.display = "none";
}
