function embedPlayer(audioURL) { 
document.writeln("<object classid='clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b' codebase='http:\/\/www.apple.com\/qtactivex\/qtplugin.cab' align='middle' height='16' width='100'>");
document.writeln("<param name='src' value='" + audioURL + "'>");
document.writeln("<param name='controller' value='true'>");
document.writeln("<param name='autoplay' value='true'>");
document.writeln("<!--[if !IE]>-->");
document.writeln("<object type='audio\/x-mpeg' data='" + audioURL + "' height='16' width='100'>");
document.writeln("<param name='controller' value='true'>");
document.writeln("<param name='autoplay' value='true'>");
document.writeln("<\/object>");
document.writeln("<!--<![endif]-->");
document.writeln("<\/object>");
document.close();
}
 

