Se vuoi farla da Flash puoi fare kosì :
primo frame time line principale:
Movieclip.prototype.centra = 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="+l ar+",height="+alt+",screenX=' + x + ',left=' + x + ',screenY=' + y + ',top=' + y + ',"+feat+"');void(0);");};
e in un pulsante (per esempio):
on (release) {
centra('tuapagina.html', 'titolo', 750, 350);
}