// JavaScript Document
document.write('<OBJECT ID="MediaPlayer" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="https://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">');
document.write('<PARAM NAME="FileName" VALUE="'+videoURI+'"/>');
document.write('<PARAM NAME="ShowStatusBar" VALUE="1">');
document.write('<PARAM NAME="AutoSize" VALUE="1">');
document.write('<Embed type="application/x-mplayer2" ');
document.write('pluginspage="http://www.microsoft.com/windows/windowsmedia/download/AllDownloads.aspx/" ');
document.write('filename="'+videoURI+'" ');
document.write('src="'+videoURI+'" ');
document.write('height="'+(height+70)+'" ');
document.write('width="'+width+'" ');
document.write('Name="MediaPlayer" ');
document.write('ShowStatusBar=1  ></embed>');
document.write('</OBJECT>');

