/* window */
// private void showCertDetailDialog() {
private void showCertDetailWindow(String detail) {
if (detailWindow == null) {
detailWindow = new CertDetailWindow(null);
detailWindow.setOkCommand(new CertDetailOkCmd());
}
detailWindow.clear();
detailWindow.append(detail);
detailWindow.display();