/* popup centrato  NO scrollbars */
function apri(url,larghezza,altezza){
xPos = (screen.width - larghezza) / 2;
yPos = (screen.height - altezza) / 2;
 window.open(url,'','width='+larghezza+',height='+altezza+',toolbar=no,scrollbars=no,menubar=no,resizable=no,top='+yPos+',left='+xPos+'')
  }