function getMimeType(){
var mimeType = "application/x-mplayer2"; //default
var agt=navigator.userAgent.toLowerCase();
if (navigator.mimeTypes && agt.indexOf("windows")==-1) {
//non-IE, no-Windows
  var plugin=navigator.mimeTypes["audio/mpeg"].enabledPlugin;
  if (plugin) mimeType="audio/mpeg" //Mac/Safari & Linux/FFox
}//end no-Windows
return mimeType
}//end function getMimeType
function displayEmbed(path, width, height) {
document.write('<OBJECT ID="MediaPlayer1" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab# Version=5,1,52,701" STANDBY="Loading Microsoft Windows® Media Player components..." type="'+getMimeType()+'" width="280" height="46">')
document.write('<param name="fileName" value="' +path+ '"')
document.write('<param name="animationatStart" value="true">')
document.write('<param name="transparentatStart" value="true">')
document.write('<param name="autoStart" value="false">')
document.write('<param name="showControls" value="true">')
document.write('<param name="Volume" value="-300">')
document.write('<embed type="'+getMimeType()+'" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="' +path+ '" name="MediaPlayer1" width=280 height=46 autostart=0 showcontrols=1 volume=-300>')
document.write('</OBJECT>');
}
