function changeNowPlaying(tracknumber){
 var trackfile = new Array(12)
   trackfile[1] = '01Instrumental_Solos_by_the_Soul_Enterprise_band.mp3';
   trackfile[2] = '02BigBossMan-remixed.mp3';
   trackfile[3] = '03Georgia_solo_bootleg.mp3';
   trackfile[4] = '04SaharaBlues_fusion-blues.mp3';
   trackfile[5] = '05Trezel_acoustic.mp3';
   trackfile[6] = '06Trezel_electric.mp3';
   trackfile[7] = '07African_intro.mp3';
   trackfile[8] = '08Captivity.mp3';
   trackfile[9] = '09Wild.mp3';
   trackfile[10] = '10Zakaria.mp3';
   trackfile[11] = 'derek-january-snippets.wax';
   trackfile[12] = 'haglund-snippets.wax';




 var trackdescription = new Array(12)
   trackdescription[1] = 'Instrumental solos by the Soul Enterprise band [1994]';
   trackdescription[2] = 'Big Boss Man intro [2006]';
   trackdescription[3] = 'Georgia on my drunk - bootleg of Jazz-Blues solo [2001]';
   trackdescription[4] = 'Sahara Blues -- a fusion-blues solo for Khaled Habib World Music Experience, at Nalen [2002] (please excuse the screaming fansat the beginning of solo<img src="/images/simplesmiley.gif" alt="smiley" class="imagetexttop">)';
   trackdescription[5] = 'Trezel - Acoustic intro, Istanbul Ampitheatre, [2003]';
   trackdescription[6] = 'Trezel - Electric [2004]: Instant-backwards-masking effect as my phrases are sampled and played backwards every few seconds: I play 2 bars ahead of everyone else, anticipating what will happen...';
   trackdescription[7] = 'Dikshira - African rubato [2004]';
   trackdescription[8] = 'Captivity - K&acute;, Cirque du Soleil [2008]';
   trackdescription[9] = 'Session for Nevada [1993]';
   trackdescription[10] = 'snippet with Kurdish star Zakaria [2002]';
   trackdescription[11] = 'derek-january-snippets.wax';
   trackdescription[12] = 'Mike has been studying/teaching in L.A. and will return to Sweden April 2010';

//  document.getElementById('MediaPlayer').FlashVars = 'config=config_maxi.txt&amp;mp3=audio/'+trackfile[tracknumber];
  document.getElementById('MediaPlayer').FlashVars = 'mp3=audio/'+trackfile[tracknumber];
  document.getElementById('MediaPlayer').SetVariable("player:jsPlay", "");
  document.getElementById("MediaPlayer").SetVariable("player:jsUrl", "audio/"+trackfile[tracknumber]);
  document.getElementById('nowplaying').innerHTML='Now playing: '+trackdescription[tracknumber];

}


//<!--    	    <param name="FlashVars" value="mp3=test.mp3"> -->

