Button in a MC

OK, I am totally zoning here. I have a button in a MC that needs to go to the next frame in the scene that the MC is in.

so if the MC is on frame 1, and has the button in it, what would the button have to say (actionscript) to (when clicked), make it go to frame 2?

I searched for it, and could not find the answer. Is it _root or _global somehow?

Thanks.

P

i guess this shoud do it:
on(release){
_root.gotoAndPlay(2);
}

[AS]on (press) {
_root.gotoAndPlay(2);
}[/AS]