svoid showPopupMenu(JPopupMenu menu, MouseEvent e) {
  if (menu != null && e != null)
    menu.show(e.getComponent(), e.getX(), e.getY());
}