Hi, im new, need help with some actionscript

[FONT=Arial]Hi, Im new to this forum and i’m new to actionscript. Im trying to make 2 different links in this actionscript without taking the rewind feature off or using an alternative rewind. If anyone can see what Im trying to do please could u correct me and point me in the right direction. Thanks Matt[/FONT]

stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function(){
rewind = false;
play();
}

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

link_btn1.onRelease = function(){
getURL(“index.asp”,"_self");
}

link_btn2.onRelease = function(){
getURL(“services.asp”,"_self");
}