Quick Question on Transitions

I’m able to get the transitions working perfectly, but now I’m stuck. On the site I’m creating I have 3 navigation buttons. Each one loads a box with information inside. The transitions between the three buttons works great, no problems with that.

On each box of information that loads I have a “Close” button that has the following script attached to it:

on (release) {
play();
}

This works, the movie that is loaded continues to play to the end, but then it loads the same box again.

The last frame has the following code attached:

_root.container.loadMovie(_root.currMovie+".swf");

Is there something else I can add to get it to keep the current movie closed? I’ve been fiddling around with it for a couple days now, at one point I managed to get it to stay closed, but then the other buttons didn’t work.

Thanks!