{
int retVal = JOptionPane.showConfirmDialog(null, "Could not find iTunes library file, search for it?", "Could Not Find iTunes", JOptionPane.YES_NO_OPTION);
if(retVal == JOptionPane.YES_OPTION)
{
JFileChooser chooser = new JFileChooser();
chooser.setFileFilter(new ITunesLibraryFileFilter());
int retVal2 = chooser.showOpenDialog(null);
if(retVal2 == JFileChooser.APPROVE_OPTION)
{
return chooser.getSelectedFile();
}