After Reversing MovieClip how do you make it display a different scene?

Hi, I have added the following code to my mc, but how do I get it to display scene 1 frame one when it is done? After it is done reversing I need it to immediately go to that scene because it has all of my buttons showing. Here is my fla file: [COLOR=#22229c]http://www.encap.net/Portals/0/ALL-3…ONE-edited.fla[/COLOR]. I am sooo close to having this file done, I have been working on it for two weeks now!:

on (rollOver) {
gotoAndPlay(“over1”);
}
//this tells the button movie to goto and play the frame label called out
on (rollOut) {
this.onEnterFrame = function() {
if (this._currentframe>1) {
this.prevFrame();
} else {
delete this.onEnterFrame;
}
};
}
on (release) {
getURL(“http://www.encap.net/retail”, “_blank”);
}

Thank you for your help!