function EmbedMP3(URL,autostart){
   if(autostart != true && autostart != "true" && autostart != "1" && autostart != 1){
      autostart = 0; //Replace with default. Default = 0 (false).
      }else{
      autostart = 1; //Replace with 1, being zero.
   }//See if we can continue.
   if(URL == null || URL == "illegal"){
      //Nope, we can't.
      document.writeln("&nbsp;error: illegal use of audio tag!&nbsp;");
   }else{
      //Add the code to the document.
      document.writeln('<object type="application/x-shockwave-flash" data="player.swf" id="audioplayer1" height="24" width="290"> ');
      document.writeln('<param name="movie" value="player.swf"> />');
      document.writeln('<param name="FlashVars" value="playerID=1&amp;bg=0xda251d&amp;leftbg=0xcccccc&amp;lefticon=0x000000&amp;rightbg=0x808080&amp;rightbghover=0xcccccc&amp;righticon=0xffffff&amp;righticonhover=0x000000&amp;text=0xFFFFFF&amp;slider=0x808080&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0xDCDCDC&amp;loop=no&amp;autostart=no&amp;soundFile=' + URL + '"> />');
      document.writeln('<param name="quality" value="high"> />');
      document.writeln('<param name="menu" value="false"> />');
      document.writeln('<param name="wmode" value="transparent">');
      document.writeln('</object>');
   }
}

