Urgent Help with gotoAndStop

I’m trying to adapt a tutorial I found on this website entitled Complex Button Rollover - Rollout Effects

The effect I am trying to achieve is instead of linking the animation to a website I wan’t to be able to navigate to another scene. The bit of the actions I’ve been changing in the downloaded fla is this,


[COLOR=#0000d0]this[/COLOR].[COLOR=#0000d0]onRelease[/COLOR] [COLOR=#0000ff]=[/COLOR] [COLOR=#006610]function[/COLOR][COLOR=#0000ff](){[/COLOR] [COLOR=#0000d0]getURL[/COLOR][COLOR=#0000ff]([/COLOR][COLOR=#666666]"http://www.kirupa.com"[/COLOR],[COLOR=#666666]"_blank"[/COLOR][COLOR=#0000ff])[/COLOR]; [COLOR=#0000ff]}[/COLOR] 

To this,

this.onRelease = function(){
  gotoAndStop("Scene 2", 1);
}

But this doesn’t seem to work when I click it just seems to refresh the animation. I have got Stop(); at the beginning of both scenes. I cannot see the problem.

Cheers xD