JOptionPane.showMessageDialog(this,
"This test has been (temporarily) disabled", "Information",
JOptionPane.PLAIN_MESSAGE);
} else if (actionCommand.equals("Null Layout")) {
JDialog dlg = new NullLayoutTest(this);
dlg.show();
} else if (actionCommand.equals("Miscellaneous Layouts")) {
JDialog dlg = new LayoutTest(this);
dlg.show();
} else if (actionCommand.equals("Layouts in Color")) {
if (!Toolkit.getDefaultToolkit().hasColors()) {