Flash Pop Up Annoyance CS3

Hey all.
Now for a while now i have been frustratingly been trying to solve the issue of opening a resized HTML pop up window from within flash, i have tried all sorts of codes and i found the one featured here:

http://www.kirupa.com/developer/mx/centered_popup.htm

Now it works fine i get a pop up and everything, but it will only pop up to the size of the flash movie it’s opening from, the parameters set in the action script won’t recognize. Now the annoying thing is, the download you get with the link above works fine.

if you take a look at my flash site in development:

http://mjarvis2009.razay.com/Darryl/HOME.html

If you click onto ANIMATION , then the first flower on the bottom left. Then click ’ PLAY MOVIE ’ thats where the script is, and as you can see it’s the same size as the flash movie itself, i have tried almost everything, but to no avail, the pop ups will eventually hold my animation pieces.

Does anyone have any ideas on how to solve this? i was thinking it maybe something to do with the version im trying it with, but the fla you get with the demo above works fine when i publish.

Hugs to all if you can help with my problem.

This is the exact code used on that button:




    on (release) {

    //customize the window that gets opened
    // 0 equals NO.
    // 1 equals YES.
    address = "http://www.kirupa.com/modular/pop-up.htm";
    target_winName = "kirupa";
    width = 30;
    height = 25;
    toolbar = 0;
    location = 0;
    directories = 0;
    status = 0;
    menubar = 0;
    scrollbars = 0;
    resizable = 0;
    //sends data back to the function
    openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);

    }