OCULTO="none";
VISIBLE="block";
OCULTO2="none";
VISIBLE2="block";
function mostrar(blo) {
document.getElementById(blo).style.display=VISIBLE;
document.getElementById('ver_off').style.display=VISIBLE;
document.getElementById('ver_on').style.display=OCULTO;
}
function ocultar(blo) {
document.getElementById(blo).style.display=OCULTO;
document.getElementById('ver_off').style.display=OCULTO;
document.getElementById('ver_on').style.display=VISIBLE;
}
function mostrar2(blo) {
document.getElementById(blo).style.display=VISIBLE2;
document.getElementById('ver_off2').style.display=VISIBLE2;
document.getElementById('ver_on2').style.display=OCULTO2;
}
function ocultar2(blo) {
document.getElementById(blo).style.display=OCULTO2;
document.getElementById('ver_off2').style.display=OCULTO2;
document.getElementById('ver_on2').style.display=VISIBLE2;
}