public void LoadPlayerType(string type, string filename)
 {
     if (type == "interactive")
     {
         AdvancedMoviePlayer.PlayInteractiveMovie(filename);
     }
     else if (type == "colorBlind")
     {
         AdvancedMoviePlayer.PlayColorBlindMovie(filename);
     }
 }