Rollover Rollout button problem! Help please!

Hi,

I used a tutorial to create a rollout button, but now I dont know how to let it go to another frame. This is the last piece of the script that takes it to a url, but I dont know what to change for it to go to the next frame.

this.onRelease = function(){
getURL(“http://www.kirupa.com”,"_blank");
}

Here is the top part of the script:

stop();

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

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

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

Thanks, hope this makes sense!