function show(item) {
  vista = (document.getElementById(item).style.display == 'block') ? 'none' : 'block';
  document.getElementById(item).style.display = vista;
}
