// PopMenuProg rewritten so that it uses the revised PopMenuApplet class.
// Barry Cornelius, 20 June 2000
import javax.swing. JFrame;
public class PopMenuProg
{
   public static void main(final String[] pArgs)
   {
      final PopMenuApplet tPopMenuApplet = new PopMenuApplet();
      tPopMenuApplet.init();
      final JFrame tJFrame = tPopMenuApplet.getJFrame();
      final ExitWindowListener tExitWindowListener =
                                                new ExitWindowListener();
      tJFrame.addWindowListener(tExitWindowListener);
   }
}
