

	    function selector_DoFSCommand(command, args)
   	    {  
 	        try
 	        {

		        //dojo.debug("selector_DoFSCommand " + command + " + " + args);
		        var scriptCall = command + "(" + args + ")"; 
		        if (dojo.render.html.mozilla) setTimeout(scriptCall,10); 
		        else eval(scriptCall);
	        }
	        catch(e)
	        {
		        //dojo.debug("EXCEPTION: bbFlash_DoFSCommand() "+ command + " + " + e.description);
		    }
	    } 
	    
		function HandleSelectorCommand(arg)
		{
			if (window.opener != null && arg.orgId == 7)
			{
				window.opener.location.href = arg.url;
				window.close();
			}
			else
			{
				window.location.href = arg.url;
			}
		}



