FLVplayback splash page

Im trying to create a simple splash page that plays a video using the FLVplayback component. The problem is that it wont redirect the browser tot he homepage at the end of the playback.

I’ve set up my FLA by putting an instance of the FLVplayback component in the only frame on the stage. I put another keyfram on a separate layer for actions and included the following actions (instance name of the FLVplayback component is videoIntro)

stop();

import mx.video.*;

videoIntro.contentPath = “masti.flv”;

var listenerObject = new Object();

listenerObject.complete = function(eventObj:Object) {
getURL(“index2.html”, “_self”);
}

videoIntro.addEventListener(“complete”, listenerObject);

i seem to be able to reference the component correctly because i can set the contentPath. What im doing in that actionscript is identical to what i have seen in some tutorials. does anyone have an idea of what i’m doing wrong here?

thanks for any help

ps if u want to see exactly what i mean go to www.marylandmasti.com