return aboutDialog;
}
private void openAboutDialog() {
AboutDialog dialog = geAboutDialog();
dialog.setModal(true);
dialog.setLocation(this.getX()+(this.getWidth() - dialog.getWidth()) / 2, this.getY()+(this
.getHeight() - dialog.getHeight()) / 2);
dialog.setVisible(true);
}