private void CopyToAnotherPlaylist(Playlist destination) {
			GContentClass[] conts = this.GetSelectedContents();
			destination.BeginUpdate();
			foreach (GContentClass cont in conts) {
				destination.AddContent(cont);
			}
			destination.EndUpdate();
		}