var s=document.location.search.slice(1);
var bits=s.split("&");
var listen=bits[0].split("=");
var ra=bits[1].split("=");

function talklisten(talkfile){
talkfile="talks/wma/"+talkfile+".wma";
document.write("<br>");
if (ra[1]=="Y"){
document.write("<object width='400' height='35' classid='CLSID:CFCDAA03-8BE4-11CF-B84B-0020AFBBCCFA'>");
document.write("<param name='autostart' value='true'/>");
document.write("<param name='src' value='"+talkfile+"'>");
document.write("<param name='controls' value='ControlPanel'/>");
document.write("<param name='console' value='hymn'/>");
document.write("<embed controls='ControlPanel' console='hymn' type='audio/x-pn-realaudio-plugin' height='30' width='400' autostart='true'></embed>");
document.write("</object>");
document.write("<br><object width='400' height='35' classid='CLSID:CFCDAA03-8BE4-11CF-B84B-0020AFBBCCFA'>");
document.write("<param name='controls' value='StatusBar'/>");
document.write("<param name='console' value='hymn'/>");
document.write("<embed src='"+talkfile+"' controls='StatusBar' console='hymn' type='audio/x-pn-realaudio-plugin' height='30' width='400'></embed>");
document.write("</object>");
}
else{
document.write("<object width='400' height='70' 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='application/x-oleobject'>");
document.write("<param name='filename' value="+talkfile+">");
document.write("<param name='DisplaySize' value='0'><param name='ShowControls' value='1'><param name='ShowStatusBar' value='1'>");
document.write("<embed type='application/x-mplayer2' pluginspage='http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=media&sba=plugin'  width='400' height='70' showcontrols=1 showdisplay=0 showstatusbar=1 autostart=true filename="+talkfile+"></embed></object>");
}
}

