Flash 8 javascript popups

hi all,

i’m having a miserable time trying to get flash 8 to work javascript popups in both firefox and internet explorer…

right now i’ve got this working in firefox only:

html head:

<script language=“JavaScript”>
<!–
function launch(page) {
openWin = this.open
(page, “this is the title”,“toolbar=no,menubar=no,scrollbars=no,location=no,width=200,height=200,top=250,left=250”);
}
–>
</script>

flash:

btn_Up.onRelease = function() {
getURL(“javascript:launch(‘popup.html’,400,300)”);
};

any thoughts?