// Program 17.4 A Simple Applet to Demonstrate the Alert Dialog
import java.applet.Applet;


public class AlertExample extends Applet {

 public void init () {
  
  Alert a = new Alert(
   "Are you sure you want to start global thermonuclear war?");
  a.show();
    
}

}
