Pop up window

BACKGROUND:

Havea xml based photo gallery with thumbnails that are loaded from the xml file and when clicked open the coresponding picture. What i want to do is then have it so once the bigger picture is clicked it launches a new ie window with the full size picture in it (this is because the full size picture is bigger than what my flash movie will be). I’ve searched the web and these forums and tried various ideas at the moment i’m trying to use the following code…

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);
}

now if i leave it like this it will work and open the window.

But what i’m trying to do is get a value from pArray and have it open that, which will be a link in an xml file.

is this possible or does it need to be done another way?

Many Thanks

Sean