  function cambia(ImageName,ImageFile){
    ImageName.src = ImageFile;
  }
 
  function Popup(apri) {
     var w = 880;
     var h = 570;
     var l = Math.floor((screen.width-w)/2);
     var t = Math.floor((screen.height-h)/2);
     window.open(apri,"Immagine","width="+ w + ",height=" + h + ",top=" + t + ",left=" + l +",scrollbars=yes");
     
  }

 function PopupMemo(apri) {
     var w = 280;
     var h = 300;
     var l = Math.floor((screen.width-w)/2);
     var t = Math.floor((screen.height-h)/2);
     window.open(apri,"Immagine","width="+ w + ",height=" + h + ",top=" + t + ",left=" + l +",scrollbars=yes");
     
  }
