function DisplayWMP(filepath,height,width) {

var oeTags = '<object id="mediaPlayer" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"'
         + 'width="' + width + '" height="' + height + '"'
         + '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">'
         + '   <param name="autoStart"     value="false"/>'
         + '   <param name="Showcontrols"  value="True">'
         + '   <param name="ShowStatusBar" value="True">'
         + '   <param name="url"           value="' + filepath + '" />'
         + '   <param name="loop"          value="false" />'               
         + '   <embed id       ="EmbedmediaPlayer"'
         + '       type        ="application/x-mplayer2"'
         + '       src         ="' + filepath + '"'
         + '       width       ="' + width + '"'
         + '       height      ="' + height + '">'
         + '   </embed>'
         + '</object>';
document.write(oeTags);

}

function DisplayMP3Player(filepath,height,width) {

var mp3Tags = '<div id="flashaudioplayer">MP3 Player</div>'
         + '<script type="text/javascript">'
         + 'var so = new SWFObject("includes/mp3player.swf", "line", "190", "20", "7");'
         + 'so.addVariable("file","' + filepath + '");'
         + 'so.addVariable("repeat","false");'
         + 'so.addVariable("backcolor","0x00000");'
         + 'so.addVariable("frontcolor","0xFFFFFF");'
         + 'so.addVariable("lightcolor","0xCC0066");'
         + 'so.addVariable("showdigits","true");'
         + 'so.write("flashaudioplayer");'
         + '</script>';
document.write(mp3Tags);

}