SWF file launching pop-up window

I am putting a web site on a CD, using the Flash projector. I have used the tutorial for the Centered Pop-Up Window. Works great! Now I’m having a hard time making it work from the CD. I have searched but haven’t found this similar problem.

All html files, images are in folders on the CD (Portlgpages) folder. The code for the window is:

on (release) {
//customize the window that gets opened
// 0 equals NO.
// 1 equals YES.
address = “http://www.eddygraphicdesign.com/Portlgpages/ill_08.html”;
target_winName = “popup_08”;
width = 288;
height = 650;
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);
}

For example, I’ve changed the address to Portlgpages/ill_08.html but it doesn’t work. Any suggestions?