private void handleImportPlaylistOption()
{
int index = list.getSelectedIndex();
if(index != -1)
{
Playlist playlist = (Playlist)this.model.get(index);
parent.getSongListPanel().clearSongs();
for(Track track : playlist.getTracks())
{
try
{
File f = track.getFile();
if(f.exists())