*/
void doStatistics(WindowInterface window) {
objectSelectionList.clearSelection();
if (statisticsDialog == null) {
viewHandler = new SearchAttributeViewHandler();
SearchAttributeView view = new SearchAttributeView(viewHandler);
JDialog dialog = Util.getDialog(window, "Statistikk", true);
statisticsDialog = new JDialogAdapter(dialog);
statisticsDialog.add(view.buildPanel(statisticsDialog));
statisticsDialog.pack();
}
Util.locateOnScreenCenter(statisticsDialog);
statisticsDialog.setVisible(true);