Open link in same window using as3 code

This code opens my links in a new window how do i set to open in same window using AS3?

private function _mouseClickHandler(event:MouseEvent):void {
var request:URLRequest=new URLRequest(event.target.href);
navigateToURL(request);
//trace(event.target.href);
}