ho preso da un'altro msg del forum questo codice:
<script type="text/javascript">
<!--
function Centrata(indirizzo) {
var w = 400;
var h = 250;
var l = Math.floor((screen.width-w)/2);
var t = Math.floor((screen.height-h)/2);
window.open(indirizzo,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}
//-->
</script>
in cui è ovvio come impostare width e height della finestra, ma non capisco come funzionano le variabili relative a top e left...
me le spiegate per favore?