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