function esconder(capa) {
        if (document.all)
        {
                document.all[capa].style.visibility='hidden';

        }
        else if (document.getElementById)
        {
                document.getElementById(capa).style.visibility="hidden";
        }
        else if (document.layers)
        {
                document.layers[capa].visibility="hide";
        }
}

function esconder_menu(capa) {
        esconder("submenu_quienes_somos");
        esconder("submenu_publicaciones");
        esconder("submenu_grupos");
        esconder("submenu_cursos");

        mostrar(capa);

}
function mostrar(capa) {
        if (document.all)
        {
                document.all[capa].style.visibility='visible';
        }
        else if (document.getElementById)
        {
                document.getElementById(capa).style.visibility="visible";
        }
        else if (document.layers)
        {
                document.layers[capa].visibility='show';
        }
}

function abrePop(URL1,ancho,alto,x,y,nombre,barras){
        if(barras!="YES")
                barras="NO";
        window.open(URL1, nombre, config="height="+alto+", width="+ancho+", toolbar=NO, menubar=NO, scrollbars="+barras+", resizable=NO, location=NO, directories=NO, status=NO, left="+x+", top="+y);
}

