var capafunction ocultar(idCapa){ if (document.layers) capa = eval("document." + idCapa); if (document.all) capa = eval(idCapa + ".style"); if (document.getElementById) capa = eval('document.getElementById("' + idCapa + '").style'); if (capa.visibility = (document.layers) ? "hide" : "hidden" );}function mostrar(idCapa){ if (document.layers) capa = eval("document." + idCapa); if (document.all) capa = eval(idCapa + ".style"); if (document.getElementById) capa = eval('document.getElementById("' + idCapa + '").style'); if (capa.visibility = (document.layers) ? "show" : "visible" );}function colorEnlace(){document.alinkColor = '#FAB30A';}