Questo codice:
codice:
<script> 

// Script di apertura per ogni finestra popup (centrata automaticamente) 
function Forum(url, larghFin, lunghFin) { 
var posX = Math.round((screen.width -larghFin)/2); 
var posY = Math.round((screen.height-lunghFin)/2); 
return window.open(url, "", "scrollbars=1,resizable=0,location=1,width=" + larghFin + ",height=" + lunghFin + ",left=" + posX +",top=" + posY); 
} 
</script>
Per lanciare il link questo:
codice:
Javascript:Forum('/forum/bb.asp', 600 , 400 )