function tratarError(){  
   return true;  
}  
window.onerror = tratarError;

var visto = none;
function muestra(num) {
  obj = document.getElementById(num);
  obj.style.display = (obj==visto) ? 'none' : 'block';
  if (visto != null)
    visto.style.display = 'none';
  visto = (obj==visto) ? null : obj;
}

var vistos = none;
function muestras(num) {
  obj = document.getElementById(num);
  obj.style.display = (obj==vistos) ? 'none' : 'block';
  if (vistos != null)
    vistos.style.display = 'none';
  vistos = (obj==vistos) ? null : obj;
}

var vistosa = none;
function muestrasa(num) {
  obj = document.getElementById(num);
  obj.style.display = (obj==vistosa) ? 'none' : 'block';
  if (vistosa != null)
    vistosa.style.display = 'none';
  vistosa = (obj==vistosa) ? null : obj;
}
