// JavaScript Document

function esconder(id,accion){
	if (accion == 'esconder')
		document.getElementById(id).style.visibility = "hidden";
	else
		document.getElementById(id).style.visibility = "visible";
}
