Have level 0 play from action on level 3

I have a two movies main being on level 0 and the other that loads on top of 0 levl 3 when u click on one of the buttons on level 3 I want the main timeline on level 0 to continue to play wich is currently on frame 175 and stop at 185. So I have a stop on the main timeline of level 0 at frame 185and on 175 and the script I have on the button is
on (release) {
unloadMovie(2);
_level0.play();
loadMovie(“home.swf”, 2);
}

I also tried
on (release) {
unloadMovie(2);
_level0.gotoAndPlay(176);
loadMovie(“home.swf”, 2);
}

the both work but it dosent stop at 185

so I tried

on (release) {
unloadMovie(2);
_level0.gotoAndStop(176);
loadMovie(“home.swf”, 2);
}

and of courser it stoped on 176.
I am not sure what I am doing wrong. please help