sysInformationDialog.setVisible(true);
}
@Action
public void helpDialog() {
final HelpDialog helpDialog = new HelpDialog(getFrame(), true);
XYCoord xyp = CalcDialogCenter.getDialogCenterLocation(getFrame(), helpDialog);
helpDialog.setLocation(xyp.getX(), xyp.getY());
helpDialog.setVisible(true);
}