/**
*
* @see org.olat.core.gui.WindowManager#createNewPopupBrowserWindowFor(org.olat.core.gui.UserRequest, org.olat.core.gui.control.creator.ControllerCreator, boolean)
*/
public PopupBrowserWindow createNewPopupBrowserWindowFor(UserRequest ureq, ControllerCreator contentControllerCreator) {
BaseChiefController cc = new BaseChiefController(ureq);
//supports the open(ureq) method
PopupBrowserWindowController sbasec = pbwcc.createNewPopupBrowserController(ureq, cc.getWindowControl(), contentControllerCreator);
//the content controller for the popupwindow is generated and set
//at the moment the open method is called!!
cc.setContentController(true, sbasec);
return sbasec;
}