JPanel main = new JPanel(new FormLayout("5dlu,pref,5dlu","5dlu,pref,5dlu"));
main.setBorder(BorderFactory.createLineBorder(Color.black));
main.add(new JLabel(mLocalizer.msg("downloadinfo","A data update is running. TV-Browser will be closed when the update is done.")), new CellConstraints().xy(2,2));
info.setContentPane(main);
info.pack();
info.setLocationRelativeTo(this);
SwingUtilities.invokeLater(new Runnable() {
public void run() {
if(downloadingThread != null && downloadingThread.isAlive()) {