// definiciones basicas
OCULTO="none";
VISIBLE="block";
	
function mostrar(blo,capa1,capa2) {
  document.getElementById(blo).style.display=VISIBLE;
  document.getElementById(capa1).style.display=VISIBLE; //ver_off
  document.getElementById(capa2).style.display=OCULTO;  //ver_on
}
 
function ocultar(blo,capa1,capa2) {
  document.getElementById(blo).style.display=OCULTO;
  document.getElementById(capa1).style.display=OCULTO;  //ver_off
  document.getElementById(capa2).style.display=VISIBLE; //ver_on
}
