// definiciones basicas OCULTO="none"; VISIBLE="block"; function abrecierra(nodo) { estado = document.getElementById(nodo).style.display; if (estado==OCULTO) { document.getElementById(nodo).style.display=VISIBLE; } else { document.getElementById(nodo).style.display=OCULTO; } }