﻿var audioFolder = "/media/audio";

function embedPlayer(MP3title,MP3URL) {
  var isWin = navigator.userAgent.toLowerCase().indexOf("windows") != -1
  if (isWin) {
  	visitorOS = "Windows";
  } else {
  	visitorOS = "Other";
  }
  var audioURL = audioFolder + MP3URL;
  var objTypeTag = "application/x-mplayer2";
  if (visitorOS != "Windows"){objTypeTag = "audio/mpeg"};

  document.writeln("<div>");
  document.writeln("<strong style='font-size:18px; position:relative; top:-28px'>" + MP3title + "&nbsp;</strong><br />");
  document.writeln("<object width='280' height='69'>");
  document.writeln("<param name='type' value='" + objTypeTag + "'>");
  document.writeln("<param name='src' value='" + audioURL + "'>");
  document.writeln("<param name='autostart' value='0'>");
  document.writeln("<param name='showcontrols' value='1'>");
  document.writeln("<param name='showstatusbar' value='1'>");
  document.writeln("<embed src ='" + audioURL + "' type='" + objTypeTag + "' autoplay='false' autostart='0' width='280' height='69' controller='1' showstatusbar='1' bgcolor='#ffffff'></embed>");
  document.writeln("</object>");
  document.writeln("</div>");
  document.close();
}