<!-- Inizio
// Apertura popup
function ApriProd(str) { 

//Imposto le dimensioni della finestra
larg=600; 
alt=340 
//Centro il popup
toptop=(screen.height/2)-(alt/2); 
leftleft=(screen.width/2)-(larg/2); 



// Proptietà della finestra
searchWin = window.open(str,'Img','top='+toptop+',left='+leftleft+',width='+larg+',height='+alt+',scrollbars=no,status=yes,location=no,toolbar=no'); 

} 
// -->