Actionscript 2.0 Rollover Buttons Help

Hi everyone, I’m fairly new to Flash and actionscripting. I’m making a website and I am wanting to use rollover buttons. I followed this tutorial to help me:

http://www.kirupa.com/developer/mx2004/button_effect.htm

Everyting works fine, however, I want to change the code from the url link at the bottom, so I can link to frame labels within my own flash document. This is the code I have put in:

stop();

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

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

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

[COLOR=“Magenta”]this.onRelease = function() {
gotoAndPlay(“15”);
};[/COLOR]

[COLOR=“Black”]The stuff in pink is not working, any ideas what I am doing wrong? Any help would be much appreciated. Thank you. Evan [/COLOR]