
//**** Solve Active X "click to active" problem by having code invoked from external JavaScript - 1/14/2008
//**** Will only play intro music once during first time of session

if (get_cookie("playmusic")!="") {
   //*** If there is any value in session cookie for variable "playmusic" then don't play music, otherwise play music
   document.write('<embed src="intro.mp3" width="130" height="33" autostart="false"></embed>');
   }
else {
   document.write('<embed src="intro.mp3" width="130" height="33" autostart="true"></embed>');
   document.cookie="playmusic=Yes"
   }


