super(frame, false /* non modal */);
Label label = new Label(question);
label.setFont( new Font("Dialog",Font.PLAIN,20) );
add( "Center", label );
Panel yn = new Panel();
Button button = new Button("Yes");
button.addActionListener( this );
yn.add( button );
button = new Button("No");
button.addActionListener( this );
yn.add( button );
add("South", yn);
pack();