HELP PLS!::Button Rollout trouble

[COLOR=Navy]Hello everyone!!! I would just like to make a quick inquiry regarding Kirupa’s tutorial on button rollouts. I just used this script to enable button rollouting in my flash movie but to my demise I found out that I could not use it to navigate my movie.

[/COLOR]
** stop();

this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}

this.onRollOver = function(){
rewind = false;
play();
}

this.onRollOut = function(){
rewind = true;
}

[COLOR=SeaGreen]//this is where I am having a problem[/COLOR]
this.onRelease = function(){
getURL(“http://www.kirupa.com”,"_blank");
}
**
[COLOR=Navy]
Is there a way i could change that chunk of code so that it functions as a normal “go to”. I mean navigation within to movie itself. Everything works fine except for the navigation

I hope someone will be able to help me because I really need to use this on my school report and that will be sue wednesday so any quick help or tip would be hot. THANKS!!!

I tired to change that chunk of code into this but to no avail:[/COLOR]

** this.onRelease = function(){
gotoAndPlay (“Introduction”, 1);
}**