var hbb_playerIndex = 0;
var hbb_mp3PlayerWidth = 188;
var hbb_prefix = ""; // TODO detect


function showMP3Player (fileLocation) {
  showMP3Player (fileLocation, false, 'Streaming MP3');
}
function showMP3Player (fileLocation, isForum) {
  showMP3Player (fileLocation, isForum, 'Streaming MP3');
}

function showMP3Player (fileLocation, isForum, titleText) {

  // get the name of the file
  var fileNameLastSlashLocation = fileLocation.lastIndexOf('/') + 1;
  var fileName = fileLocation.substr(fileNameLastSlashLocation, fileLocation.length-fileNameLastSlashLocation);


  if (isForum) {
    document.write('<table class="tborder" cellpadding="4" cellspacing="1" border="0" width="' + hbb_mp3PlayerWidth + '" style="margin:10px 0"><thead><tr><td class="tcat" colspan="2" style="text-align:center">MP3 player</td></tr></thead><tbody><tr><td class="panelsurround">');
  }

  document.write ('<p style="margin:0px;" id="mp3_player' + hbb_playerIndex + '"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</p><p style="margin:0px;"><small>	&rarr; <a href="' + fileLocation + '" title="Download this file to your computer. You may wish to right click - save file as"');
  if (isForum) {
    document.write(' style="color:#ffffff;">Download ' + fileName + '</a></small></p></td></tr></tbody></table>');
  } else {
    document.write('">Download ' + fileName + '</a></small></p>');
  }

//  document.write ();

  var s1 = new SWFObject(hbb_prefix + "/flash/flvplayer.swf","single",hbb_mp3PlayerWidth,"110","7");
  s1.addParam("allowfullscreen","true");
  s1.addVariable("file",fileLocation);
  s1.addVariable("image", "http://www.humanbeatbox.com/images/homepage/boxlogo_new.gif");
  s1.write("mp3_player" + hbb_playerIndex);
  hbb_playerIndex++;
}


