Ok, JS to Flash Now!
Go to Frame 2

Download Source
Here are the other values you can play around with
Below listing follows "Actionscript" --> "Javascript" equivalent
play(); --> document.myMovie.Play();
stop(); --> document.myMovie.StopPlay();
gotoAndPlay(x); --> document.myMovie.GotoFrame(x-1); document.myMovie.Play();
//in above statement, x is a frame number
gotoAndStop(x); --> document.myMovie.GotoFrame(x-1);
gotoAndPlay ("frameLabel"); --> document.myMovie.TGotoLabel('/', "frameLabel"); document.myMovie.Play();