<!-- // JavaScript Document

var ref = null;

initProdotti = function() { 
  
  var pr = document.getElementById("prodotti");
  var list = pr.getElementsByTagName("a");
  
  for (var i=0; i<list.length;i++) {
    var el = list[i];
    el.onclick = function(){
      var feat = "width=450,height=450,scrollbars=0,resizable=0";
      if (ref!=null) ref.close();
      ref = window.open("zoom.html?" + this.href, "zoom", feat);
      ref.focus();
      return false;
    }
  }
  
}

setImage = function() {
  var path = window.location.search.substring(1);
  var image = document.getElementById("image");
  image.src=path;
}  
-->