ToolWindow toolWindow = toolWindowManager.registerToolWindow(TOOL_WINDOW_ID, false, ToolWindowAnchor.RIGHT);
toolWindow.setIcon(IntelliTracIcons.getInstance().getSmallIcon());
ContentFactory contentFactory = PeerFactory.getInstance().getContentFactory();
toolWindowForm = new ToolWindowForm();
Content content = contentFactory.createContent(toolWindowForm.getRootComponent(), null, false);
toolWindow.getContentManager().addContent(content);
}