// Esconde un elemento del formulario
function nvis(nom) {
		if (document.getElementById(nom) != null)
				document.getElementById(nom).style.display = "none";
}
// Muestra un elemento del formulario que estaba escondido
function vis(nom) {
		if (document.getElementById(nom) != null) {
				document.getElementById(nom).style.display = "block";
		}
}
// Devuelve si un elemento del formulario estaba escondido
function esvis(nom) { 
		return document.getElementById(nom).style.display == "block";
}

