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