Redirect at end of swf

okay so I have an flv playing in a swf on my index page, index.html. It is just a short intro and I would like to be able to go directly to home.html at the end of that short flv video. This is the actionscript I’m using to play the video, I assume it would go in here. Thanks.

[SIZE=1]var nc:NetConnection = new NetConnection();
nc.connect(null);
var nStream:NetStream = new NetStream(nc);
theVideo.attachVideo(nStream);
nStream.setBufferTime(5);
nStream.play(“flv/logo_intro.flv”);
playbtn_mc.onRelease = function() {
if (this.icon_mc._currentframe == 1) {
this.icon_mc.gotoAndStop(2);
nStream.pause();
} else {
this.icon_mc.gotoAndStop(1);
nStream.pause();
}
};[/SIZE]