Video (flv) question

ok i load my video like this


var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
theVideo.attachVideo(ns);
ns.setBufferTime(1);
ns.play("cl.flv");
ns.pause();

function checkifloaded()
{
	var total:Number = (ns.bytesLoaded/ns.bytesTotal)*100;
	trace(total);
	otk._yscale = total;
	if (total>99 && ns.bytesTotal>0) {
		_root.ns.pause();
		otk._visible = false;
        clearInterval(rele)
	}    
} 

rele = setInterval(this, "checkifloaded", 50);

i want when video finish playback than to get url"www.blahnlah.com"

how i can dothat? thanks