public static String showComboDialog(
     View view, String message, String key, String[] opts, String defValue, boolean allowUser) {
   InputDialog id = new InputDialog(view, key, message, defValue, opts, allowUser);
   return id.showDialog();
 } // }}}
 public static String showInputDialog(View view, String message, String key, String defValue) {
   InputDialog id = new InputDialog(view, key, message, defValue);
   return id.showDialog();
 }