function createMediaPlayer( fileName, width, height ) {
  document.writeln('<object id=\"player1\" width=\"' + width + '\" height=\"' + height + '\" classid=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\"');
  document.writeln('  name=\"player1\"');
  document.writeln('  codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"');
  document.writeln('  standby=\"Loading Microsoft Windows Media Player components...\"');
  document.writeln('  type=\"application/x-oleobject\">');
  document.writeln('	<param name=\"FileName\" value=\"' + fileName + '\">');
  document.writeln('	<param name=\"ShowControls\" value=\"1\">');
  document.writeln('	<param name=\"ShowPositionControls\" value=\"0\">');
  document.writeln('	<param name=\"ShowAudioControls\" value=\"1\">');
  document.writeln('	<param name=\"ShowTracker\" value=\"1\">');
  document.writeln('	<param name=\"ShowDisplay\" value=\"0\">');
  document.writeln('	<param name=\"ShowStatusBar\" value=\"0\">');
  document.writeln('	<param name=\"ShowGotoBar\" value=\"0\">');
  document.writeln('	<param name=\"ShowCaptioning\" value=\"0\">');
  document.writeln('	<param name=\"AutoStart\" value=\"1\">');
  document.writeln('	<param name=\"AnimationAtStart\" value=\"0\">');
  document.writeln('	<param name=\"TransparentAtStart\" value=\"0\">');
  document.writeln('	<param name=\"AllowChangeDisplaySize\" value=\"0\">');
  document.writeln('	<param name=\"DisplaySize\" value=\"0\">');
  document.writeln('	<param name=\"AllowScan\" value=\"1\">');
  document.writeln('	<param name=\"EnableContextMenu\" value=\"0\">');
  document.writeln('	<param name=\"ClickToPlay\" value=\"0\">');
  document.writeln('  <embed type=\"application/x-mplayer2\"');
	document.writeln('		pluginspage=\"http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/\"');
	document.writeln('		id=\"player1\"');
	document.writeln('		name=\"player1\"');
	document.writeln('		filename=\"' + fileName + '\"');
	document.writeln('		src=\"' + fileName + '\"');
	document.writeln('		width=\"' + width + '\"');
	document.writeln('		height=\"' + height + '\"');
	document.writeln('		showcontrols=\"1\"');
	document.writeln('		showpositioncontrols=\"0\"');
	document.writeln('		showaudiocontrols=\"1\"');
	document.writeln('		showtracker=\"1\"');
	document.writeln('		showdisplay=\"0\"');
	document.writeln('		showstatusbar=\"0\"');
	document.writeln('		showgotobar=\"0\"');
	document.writeln('		showcaptioning=\"0\"');
	document.writeln('		autostart=\"1\"');
	document.writeln('		autorewind=\"0\"');
	document.writeln('		animationatstart=\"0\"');
	document.writeln('		transparentatstart=\"0\"');
	document.writeln('		allowchangedisplaysize=\"0\"');
	document.writeln('		allowscan=\"0\"');
	document.writeln('		enablecontextmenu=\"0\"');
  document.writeln('    clicktoplay=\"0\">');
  document.writeln('	</embed>');
  document.writeln('</object>');
}

