function BatmoAudioPop(filedesc, filepath, WindowNumber) {
    var isWin = navigator.userAgent.toLowerCase().indexOf("windows") != -1;
    if (isWin) {
        visitorOS = "Windows";
    } else {
        visitorOS = "Other";
    }
    var mimeType = "audio/mpeg";
    var objTypeTag = "application/x-mplayer2";
    var theExtension = filepath.substr(filepath.lastIndexOf(".") + 1, 3);
    if (theExtension.toLowerCase() == "wav") {
        mimeType = "audio/x-wav";
    }
    if (theExtension.toLowerCase() == "aif") {
        mimeType = "audio/x-aiff";
    }
    if (theExtension.toLowerCase() == "wma") {
        mimeType = "audio/x-ms-wma";
    }
    if (theExtension.toLowerCase() == "mid") {
        mimeType = "audio/mid";
    }
    if (visitorOS != "Windows") {
        objTypeTag = mimeType;
    }
    PlayerWin = window.open("", WindowNumber, "width=320,height=175,top=0,left=0,screenX=0,screenY=0,resizable=0,scrollbars=0,titlebar=0,toolbar=0,menubar=0,status=0,directories=0");
    PlayerWin.focus();
    PlayerWin.document.writeln("<html><head><title>" + filedesc + "</title></head>");
    PlayerWin.document.writeln("<body bgcolor='#000000'>");
    PlayerWin.document.writeln("<div align='center'>");
    PlayerWin.document.writeln("<b style ='font-size:18px;font-family:Optima,sans-serif;color:#C80000;line-height:1.6'>" + filedesc + "</b><br />");
    PlayerWin.document.writeln("<object width='280' height='69'>");
    PlayerWin.document.writeln("<param name='src' value='" + filepath + "'>");
    PlayerWin.document.writeln("<param name='type' value='" + objTypeTag + "'>");
    PlayerWin.document.writeln("<param name='autostart' value='1'>");
    PlayerWin.document.writeln("<param name='showcontrols' value='1'>");
    PlayerWin.document.writeln("<param name='showstatusbar' value='1'>");
    PlayerWin.document.writeln("<embed src ='" + filepath + "' type='" + objTypeTag + "' autoplay='true' width='280' height='69' controller='1' showstatusbar='1' bgcolor='#000000' kioskmode='true'>");
    PlayerWin.document.writeln("</embed></object></div>");
    PlayerWin.document.writeln("<p style='font-size:12px;font-family:Optima,sans-serif;color:#FFFFFF;text-align:center'><a href='" + filepath + "'>Download this file</a> <span style='font-size:10px'>(right-click or Control-click)</span></p>");
    PlayerWin.document.writeln("<form><div align='center'><input type='button' value='Close this window' onclick='javascript:window.close();'></div></form>");
    PlayerWin.document.writeln("</body></html>");
    PlayerWin.document.close();
}