super(owner, text);
ImagePanel panel = new ImagePanel(image);
getContentPane().add("Center", panel);
JPanel bp = new JPanel(new FlowLayout());
okay = (JButton) bp.add(new JButton("Okay"));
okay.addActionListener(new ActionAdapter() {
public void actionPerformed(ActionEvent e) {
dispose();
}
});
getContentPane().add("South", bp);