sul primo frame

MovieClip.prototype.apriPopup = function (nome, titolo, lar, alt)
{
getURL("javascript:window.open('" + nome + "','" + titolo + "','width=" + lar + ",height=" + alt + ",toolbar=yes,location=yes,status=yes,menubar=yes, scrollbars=yes,resizable=yes');void(0);");
};



sul pulsante

on (release) {
apriPopup('popup.html', 'FLASH', 800, 620);
}

tutto ok, ma per avere una popup solo con la cornice blu senza bordi, senza menu, solo col tasto rosso con la x per chiuderla come faccio?