ciao cosi:
SUL PRIMO FRAME:
codice:
import flash.external.ExternalInterface;
MovieClip.prototype.popup = function(nome, titolo, lar, alt, x, y, feat) {
    ExternalInterface.call("window.open", nome, titolo, "'width="+lar+",height="+alt+",screenX="+x+",left="+x+",screenY="+y+",top="+y+","+feat+"'");
};
SUL BOTTONE

codice:
on (release) {
popup('http://tua pagina da aprire','titolo',800,600,0,0,'status=yes');
}