Using onCuePoint to getURL?

I am a Noobe to AS, but I’m trying to learn. Here’s the problem, I have a intro for a website using a FLV. I set two cue points (“start”,“end”). What I am trying to do seems very simple (when I started,LOL), at the end of the FLV have it go to another web page using the “end” cue point. Here is what I have:

var listenerObject:Object = new Object();
listenerObject.cuePoint = function(eventObject:Object):Void {
    getURL("[http://www.grunts-clan.com/gaming","_self](http://www.grunts-clan.com/gaming)");
};
movie2.addEventListener("end", listenerObject);

Like I said, I’m just learning, So any help with this will be Greatly Appreciated.