props.put("visible", true);
DataObject dataObject = DataObjectTools.registerDataObject("BuddyList", AppContext.instance().getUser()
.getUniqueId());
CommandTools.performAsync(new ShowWindow("BuddyListPane", dataObject), props);
props = new Properties();
props.put("closable", false);
props.put("iconifiable", false);
props.put("maximizable", false);
props.put("maximized", false);
props.put("titlebar", false);
props.put("visible", true);
CommandTools.performAsync(new ShowWindow("CallManagerInstantCallPane"), props);
}
catch (Exception x)
{
Log.logError("client", "DefaultStartup", x.toString());
}