public void PlayAlbum(CS_AlbumInfo a)
 {
     loadCueSheet (a.getSheet ());
 }
 public void OpenContainingFolder(CS_AlbumInfo a)
 {
     CueSheet s=a.getSheet ();
      	string path = System.IO.Path.GetDirectoryName (s.cueFile ());
     if (Banshee.IO.Directory.Exists (path)) {
        System.Diagnostics.Process.Start (path);
     }
 }