AC_RunActiveContent.js VS defined popup dimensions

I have not been able to make a popup from within flash that works while the AC_RunActiveContent.js active-x border disabling script is active.

I want to popup a window like this:

on(release){
getURL(“javascript:Launch(‘legal.html’, 900, 525)”)
}

Obviously inside the html page, there is a javascript function that enables that:

<script language=“JavaScript”>
function Launch(page, name, width, height) {
OpenWin = this.open(page, “blah”, “toolbar=no, menubar=no ,location=no, scrollbars=yes, resizable=yes, width=” + width + “, height=” + height + “, top=” + (screen.height/2 - 300) + “, left=” + (screen.width/2 - width/2) + “”");
}
</script>

Now, if I don’t use “AC_RunActiveContent.js,” the launch function works fine, launching a popup page 525pixels wide by 900pixels long. However, I have the active-x control border.

If I use the “AC_RunActiveContent.js,” I get no active-x control border. But when I click the link to launch a popup, I get an error at the bottom of the page and no popup shows up.

Does anyone have a popup with dimensions called from inside the flash file that works WITH “AC_RunActiveContent.js”? If you do, could I please see it?