codice:
for (var i=1; i<100; i++) {
  var obj = document.getElementById('barra' + i);
  if (obj) {
    obj.style.display = "none";
  }
}