How to move between scenes?

hei, I’m having a problem with moving from scene to scene.
In scene 1, there is a button inside a movie clip. On release it should take you to scene 2 frame 1. I found a piece of code from Flash help but it seems not working.

// This script takes the user to Scene 2 when goScene_btn
// is released.
goScene_btn.onRelease = function (){
gotoAndStop(“Scene 2”, 1);
};

Think something is missing. I haven’t used multiple frames before and would be glad to receive some help.