// definiciones basicas
OCULTO="none";
VISIBLE="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;
}


OCULTO2="none";
VISIBLE2="block";

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;
}
