function BatmoAudioPop(filedesc,filepath,WindowNumber,speaker,sermondate) 
{
    PlayerWin = window.open('',WindowNumber,'width=420,height=320,top=75,left=75,screenX=75,screenY=75,resizable=1,scrollbars=0,titlebar=1,toolbar=0,menubar=0,status=1,directories=0');

    PlayerWin.focus();
    PlayerWin.document.writeln("<html><head><title>Crossroads Sermon Player</title></head>");;
    PlayerWin.document.writeln("<body bgcolor='linen'>");
    PlayerWin.document.writeln("<div align='center'><img src='http://www.crossroadschristianfellowship.org/images/transparentimprint.jpg'><br >");
    PlayerWin.document.writeln("<p> <b style ='font-size:16px;color:black;font-family:Verdana,sans-serif;line-height:1.6'>" + filedesc + "</b> <br>");
    PlayerWin.document.writeln("</p>");
    PlayerWin.document.writeln("<embed type='application/x-shockwave-flash' wmode='transparent' src='http://www.google.com/reader/ui/3523697345-audio-player.swf?audioUrl=" + filepath + "&autoPlay=true' height='27' width='400'></embed>");
    if (speaker) {PlayerWin.document.writeln("<p> <b style ='font-size:12px;color:black;font-family:Verdana,sans-serif;line-height:1.6'>" + speaker + "</b> <br>");
    PlayerWin.document.writeln("</p>");}
    if (sermondate) {PlayerWin.document.writeln("<p> <b style ='font-size:10px;color:black;font-family:Verdana,sans-serif;line-height:1.6'>" + sermondate + "</b> <br>");
    PlayerWin.document.writeln("</p>");}
    PlayerWin.document.writeln("</div></body></html>");
    PlayerWin.document.close(); // "Finalizes" new window
}
