Open new window

Hello all
I dabbled in flash 5 and am trialing flashmx2004/pro.
I have a small clip in which at the end is an enter button. When this button is clicked a new page will open in the parent window and another small window should open with a flash music controller over top like a popup. But I am unable to achieve this with the mx2004pro like I did in flash 5. Here is the script I am using most borrowed from the tutorial from this site. I would appreciate any help I could get. The parent window works fine but the popup will not come up. I am getting no errors when publishing.

on (press) {
getURL(“http://www.nmf.cc/NMF.htm”, “_self”);
//customize the window that gets opened
// 0 equals NO.
// 1 equals YES.
address = “http://www.nmf.cc/musiclayer.htm”;
target_winName = NMF;
width = 200;
height = 150;
toolbar = 0;
location = 0;
directories = 0;
status = 0;
menubar = 0;
scrollbars = 1;
resizable = 0;
//sends data back to the function
openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);
}