Menu Back Help

Hi,

I am currently using this : http://ffiles.com/view_listing.php?sid=76&cat=4 for the links on my flash website. That Menu Back system works great linking to other HTML pages, but i cannot figure out how to get to point to different frames of my movie once the buttons are clicked. here is the current AS :

// config name
name.nomme = “HOME”;
link = “index.html”;
// config but
this.stop();
this.onEnterFrame = function() {
if (voltar == true) {
this.prevFrame();
}
}
this.onRollOver = function() {
voltar = false;
this.play();
}
this.onRollOut = function() {
voltar = true;
}
this.onRelease = function() {
getURL(link);
}

Any help would be very appreciated