Stupid?

I followed the displaying a pop window_
Everything went great
Well I want to use the script on my site -
But I don’t know what to put for the address- My site is not on the web , its still in flash . Would I put the name of the file EX. homepage_blingbling.swf
or do I do this in dreamweaver
Please help

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 = 400;
height = 300;
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);
}

First you need to put your swf into an html file first and then apply the html file name into the script. So it would look something like this.

on (release) {
//customize the window that gets opened
// 0 equals NO.
// 1 equals YES.
address = "yourhtmlpage.html";
target_winName = "kirupa";
width = 400;
height = 300;
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);
}

Thanks electrongeek
You rock