function abrir(label) {
  var wdge = window.document.getElementById;
  if (!wdge) return;
  window.document.getElementById(label).style.display  = (window.document.getElementById(label).style.display == 'block') ? 'none':'block';
}

