if (AboutMenu == null) {
AboutMenu = new JMenu("About");
Border paddingBorder = BorderFactory.createEmptyBorder(0,5,0,7);
JLabel AboutTxt = new JLabel("<html><center><br>Tunes Playlist Converter<br>Version " + ver + "<br><br><a href=''>Click to visit website.</a><br><br>Copyright (C) 2011 Christian Larson<br>This program comes with ABSOLUTELY<br>NO WARRANTY. This is free software,<br>and you are welcome to redistribute<br>it under certain conditions.<br><br>See website for more info.</center></html>");
AboutTxt.setBorder(paddingBorder);
AboutTxt.addMouseListener(new java.awt.event.MouseListener() {
public void mouseClicked(java.awt.event.MouseEvent e) {
String html = "http://code.google.com/p/tunes-playlist-converter/";
try {
java.awt.Desktop.getDesktop().browse(java.net.URI.create(html));
} catch (IOException e1) {