<!-- popup centrato nella finestra
function ApriPop(str) { 

//larghezza altezza  popup
larg=780; 
alt=600; 

// 
toptop=(screen.height/2)-(alt/2); 
leftleft=(screen.width/2)-(larg/2); 


// barra di scorrimento- barra di stato- barra menù
searchWin = window.open(str,'','top='+toptop+',left='+leftleft+',width='+larg+',height='+alt+',scrollbars=no,status=no,location=no,toolbar=no'); 

} 
// -->