Hi all !

I was searching over the net google and forums and I still didn't get my problem solved.

What Im trying to do is:

1-I have a Flash website

2-inside of my flash website I created a section where the user will be clicking on a picture and an swf movie pop's up and become a slide show swf movie.

3- I created the slide show and saved it in SWF format and its called genova.swf

4-I created a button (called in instance g1_btn)over the picture in my main website and in the actions layer I insterted the following script:

g1_btn.onRelease = function () {
loadMovie("genova.swf",3);
}

5- in the .fla file where the slide shows has been made, i created a button with an "X" shape and inserted the following script into its action:

on (release) {
getURL("javascript:window.opener=self;window.close ();");
}


The problem

I go to my website, I click on the picture and a popup comes out, its my genova.swf slideshow and its over my main website not in a separated window witch I want so ! Ok... now I need to close this slide show so I press on its "X" button, and unfortunately the whole window closes including my website.

QUESTION:

How can I ONLY close the swf slideshow without having to close the whole browser ?

Thanks in advance.