OCULTO="none";
VISIBLE="block";
	
function mostrar1(blo) {
  document.getElementById(blo).style.display=VISIBLE;
  document.getElementById('ver_off1').style.display=VISIBLE;
  document.getElementById('ver_on1').style.display=OCULTO;
}
 
function ocultar1(blo) {
  document.getElementById(blo).style.display=OCULTO;
  document.getElementById('ver_off1').style.display=OCULTO;
  document.getElementById('ver_on1').style.display=VISIBLE;
}

function mostrar2(blo) {
  document.getElementById(blo).style.display=VISIBLE;
  document.getElementById('ver_off2').style.display=VISIBLE;
  document.getElementById('ver_on2').style.display=OCULTO;
}
 
function ocultar2(blo) {
  document.getElementById(blo).style.display=OCULTO;
  document.getElementById('ver_off2').style.display=OCULTO;
  document.getElementById('ver_on2').style.display=VISIBLE;
}

function mostrar3(blo) {
  document.getElementById(blo).style.display=VISIBLE;
  document.getElementById('ver_off3').style.display=VISIBLE;
  document.getElementById('ver_on3').style.display=OCULTO;
}
 
function ocultar3(blo) {
  document.getElementById(blo).style.display=OCULTO;
  document.getElementById('ver_off3').style.display=OCULTO;
  document.getElementById('ver_on3').style.display=VISIBLE;
}

function mostrar4(blo) {
  document.getElementById(blo).style.display=VISIBLE;
  document.getElementById('ver_off4').style.display=VISIBLE;
  document.getElementById('ver_on4').style.display=OCULTO;
}
 
function ocultar4(blo) {
  document.getElementById(blo).style.display=OCULTO;
  document.getElementById('ver_off4').style.display=OCULTO;
  document.getElementById('ver_on4').style.display=VISIBLE;
}

function mostrar5(blo) {
  document.getElementById(blo).style.display=VISIBLE;
  document.getElementById('ver_off5').style.display=VISIBLE;
  document.getElementById('ver_on5').style.display=OCULTO;
}
 
function ocultar5(blo) {
  document.getElementById(blo).style.display=OCULTO;
  document.getElementById('ver_off5').style.display=OCULTO;
  document.getElementById('ver_on5').style.display=VISIBLE;
}

function mostrar6(blo) {
  document.getElementById(blo).style.display=VISIBLE;
  document.getElementById('ver_off6').style.display=VISIBLE;
  document.getElementById('ver_on6').style.display=OCULTO;
}
 
function ocultar6(blo) {
  document.getElementById(blo).style.display=OCULTO;
  document.getElementById('ver_off6').style.display=OCULTO;
  document.getElementById('ver_on6').style.display=VISIBLE;
}

