// setup the StatusPanel. There will be just one DIV for this, no
// matter how many apps we have in the same page.
try {
RootPanel status = RootPanel.get("gwt-status");
if (status.getWidgetCount() == 0) {
StatusPanel sp = new StatusPanel();
status.add(sp);
StdAsyncCallback.setManager(sp);
}
} catch (Exception e) {