function tabla() {
  var col=false;
  tabla = document.getElementById('alternada');
  for (i=0; ele = tabla.getElementsByTagName('tr')[i]; i++) {
    ele.style.background = (col) ? '#f1f1f1' : '#e3e9eb';
    col = !col;
  }
}
