ciao

di solito per aprire una finestra di dimensioni definite (esempio 400x400) uso questa funzione:

codice:
MovieClip.prototype.apriPopup = function (nome, titolo, lar, alt, feat)
{
        var w = System.capabilities.screenResolutionX/2;
        var h = System.capabilities.screenResolutionY/2;
        var x = Math.round(w - (lar * 2));
        var y = Math.round(h - (alt * 2));
        getURL("javascript:window.open('"+ nome + "','" + titolo + "','width=" + lar + ",height=" + alt + ",screenX=" + x + ",left=" + x + ",screenY=" + y + ",top=" + y + "," + feat + "');void(0);");
};
e poi sul pulsante:
codice:
on (release) {
        apriPopup('pagina.html', 'FLASH', 400, 400, 'status=no, toolbar=NO scrollbars=no');
}
e mi si apre in alto a sinistra.
c'è un modo per far sì che si apra a centro schermo?
(forse sono io che non metto sufficienti parametri script del pulsante..)

grazie