// JavaScript Document
function embvid(height,width,fileurl)
{
   document.write('<object id="mediaPlayer2" width="'+width+'" height="'+height+'"\n');
   document.write('classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"\n');
   document.write('codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"\n');
   document.write('standby=" Microsoft Windows Media Player components..." type="application/x-oleobject">\n');
   document.write('                    <param name="fileName" value="'+fileurl+'">\n');
   document.write('                    <param name="animationatStart" value="1">\n');
   document.write('                    <param name="transparentatStart" value="1">\n');
   document.write('                    <param name="autoStart" value="1">\n');
   document.write('                    <param name="ShowControls" value="1">\n');
   document.write('                    <param name="ShowDisplay" value="0">\n');
   document.write('                    <param name="ShowStatusBar" value="1">\n');
   document.write('                    <param name="loop" value="0">\n');
   document.write('<embed type="application/x-mplayer2"\n');
   document.write('pluginspage="http://microsoft.com/windows/mediaplayer/en/download/"\n');
   document.write('id="mediaPlayer2" displaysize="4" autosize="0"\n');
   document.write('bgcolor="darkblue" showcontrols="1" showtracker="1"\n');
   document.write('showdisplay="0" showstatusbar="1" videoborder3d="0" width="'+width+'" height="'+height+'"\n');
   document.write('src="'+fileurl+'" autostart="1" designtimesp="5311" loop="0"> </embed>\n');
   document.write('</object>\n');
}
