/** @param args the command line arguments */
  public static void main(String args[]) {
    GUIUtil.initGUI();

    /* Create and display the form */
    java.awt.EventQueue.invokeLater(
        new Runnable() {
          public void run() {
            new TabbedResponseFrame().setVisible(true);
          }
        });
  }