Mario, The issue I see is herevar url = navigateToURL (new URLRequest(infoData.link));
the navigateToURL does not return anything so setting the var url to it is doing nothing.navigateToURL is opening a window, but it does not take any of the features that are var'd below into account.Try this code//show link
private function showLink():void
{
var url:String = infoData.link;
var window:String = "_blank";
var features:String = "toolbar=no,location=no,resizable=no,directori es=n o,status=no,scrollbars=no,copyhistory=no,width=450 ,height=360";
var WINDOW_OPEN_FUNCTION:String = "window.open";
ExternalInterface.call( WINDOW_OPEN_FUNCTION, url, window, features );
}