*/
public ImageEffectDialog(final String effect) {
super(new VerticalFieldManager());
// Create radio buttons for the image effect choices
_options = new RadioButtonGroup();
final RadioButtonField none =
new RadioButtonField("None", _options, effect == null);
final RadioButtonField greyscale =
new RadioButtonField("Greyscale", _options,
(effect != null && effect.equals("monochrome")));