function drawplayer(file, width, height) {
  document.write('<object id="MediaPlayer1" 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" width="' + width + '" height="' + height + '">');
  document.write('<param name="filename" value="' +  file + '">');
  document.write('<param name="autoStart" value="false"> ');
  document.write('<param name="showControls" value="true"> ');
  document.write('<param name="Volume" value="-450">'); 
  document.write('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="'+ file + '" name="MediaPlayer1" width="' + width + ' height="' + height + '" autostart=0 showcontrols=1 volume=-450> ');
  document.write('</object>');
}
