﻿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/x-wav"].enabledPlugin;
      if (plugin) mimeType="audio/x-wav" //Mac/Safari & Linux/FFox
    }//end no-Windows
    return mimeType
}//end function getMimeType

function setEmbed(ID, file) {
    var element = document.getElementById(ID);
    //Write the following three lines in one:
    element.innerHTML = '<embed src="' + file + '" autostart="1" loop="0" height="0px" ShowControls="0" ShowStatusBar="0" ShowDisplay="0" width="0px" type="' + getMimeType() + '"></embed>';
}// end function setEmbed   // JScript File

