OK guys....this works for every purpose imaginable I believe. I wrote this sucker from a compilation of tons of variations of javascripts about popups and it is fully customizable from flash the flash button on how you want your window....size, menubar, address bar, status bar, etc. Everything. It is even centered! Now don't get all worked up about how complicated it looks...it is not. There may be an easier way, but this works everytime for every site I've done and that works for me...

Here we go....
THIS GOES INTO YOUR HTML DOCUMENT IN THE <HEAD> (DON'T TOUCH ANYTHING) IT WORKS AS IS...
-----------------------------------------------
<script language="javascript" type="text/javascript">
<!--
var win=null;
function NewWindow(mypage,myname,w,h,scroll,menubar,toolbar ,location,status,resizable,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math .floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Mat h.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(scr een.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPositi on+',left='+LeftPosition+',scrollbars='+scroll+',m enubar='+menubar+',toolbar='+toolbar+',location='+ location+',status='+status+',resizable='+resizable +',directories=no';
win=window.open(mypage,myname,settings);}
// -->
</script>

THIS GOES ONTO YOUR BUTTON IN FLASH
-----------------------------------
on (release) {
getURL ("javascript:NewWindow('http://www.timsantor.com','name','800','600','no','no','n o','no','no','no','center')");
}

NOW IT LOOKS LIKE ALOT BUT HERE IS YOUR CUSTOMIZABILITY:
These are in order from left to right:

1ST SETTING: The URL you want to open..a relative or absolute path (example:http://www.timsantor.com)
2ND SETTING: The NAME of the window to open...can anything you want it to be.
3RD SETTING: The WIDTH
4TH SETTING: The HEIGHT
5TH SETTING: SCROLLBARS (yes or no)
6TH SETTING: MENUBAR (yes or no)
7TH SETTING: TOOLBAR (yes or no)
8TH SETTING: LOCATION (yes or no)
9TH SETTING: STATUS (yes or no)
10TH SETTING: RESIZABLE (yes or no)
11TH SETTING: POSITION (center or random)

THAT SHOULD DO IT FOR ALL YOUR NEEDS! HAVE FUN!