private static void refreshBrowser(final String browserID) {
Utils.execSWTThread(new AERunnable() {
public void runSupport() {
MultipleDocumentInterfaceSWT mdi = UIFunctionsManagerSWT.getUIFunctionsSWT().getMDISWT();
BaseMdiEntry entry = (BaseMdiEntry) mdi.getEntrySWT(browserID);
//MdiEntrySWT entry = mdi.getEntrySWT(browserID); // Use when UIs merged
SWTSkinObjectBrowser soBrowser = SWTSkinUtils.findBrowserSO(entry.getSkinObject());
if (soBrowser != null) {
soBrowser.refresh();
return;
}