function mostra(id) {
	document.getElementById(id).style.visibility="visible";
}

function esconde(id) {
	document.getElementById(id).style.visibility="hidden";
}
