/* da inserire senza alcuna modifica nel primo frame della timeline principale */

MovieClip.prototype.apriPopupCentrata = function(nome, titolo, lar, alt, feat)
{
        getURL("javascript:var x = Math.round((screen.width/2)-(" + lar + "/2));var y=((screen.height/2)-(" + alt + "/2));window.open('" + nome + "','" + titolo + "','width=" + lar + ",height=" + alt + ",screenX=' + x + ',left=' + x + ',screenY=' + y + ',top=' + y + '," + feat + "');void(0);");
};


/* da inserire con le oppurtune modifiche nel pulsante in flash */

on (release) {
        apriPopupCentrata('test.html', 'FLASH', 400, 300, 'status=yes, toolbar=yes');
}