function CreatePlugin()
{

	// OBJECT
	document.write('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write('CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
	document.write('WIDTH="800" HEIGHT="590" ');
	document.write('ID="flashmovie" ');
	document.write('ALIGN="">');

	// Params
	document.write('<PARAM NAME="movie" VALUE="frame.swf">');
	document.write('<PARAM NAME="quality" VALUE="high">');
	document.write('<PARAM NAME="bgcolor" VALUE="#E2D5A5">');
	document.write('<PARAM NAME="wmode" VALUE="opaque">');

	// embed
	document.write('<embed ');
	document.write('src="frame.swf" ');
	document.write('quality=high ');
	document.write('bgcolor=#E2D5A5 ');
	document.write('width="800" height="590" ');
	document.write('name="flashmovie" ');
	document.write('align="" ');
	document.write('pluginspage="http://www.macromedia.com/go/getflashplayer ');
	document.write('type="application/x-shockwave-flash" ');
	document.write('scale="exactfit" ');
	document.write('wmode="opaque" ');
	document.write('>');

	document.write('</OBJECT>');

  var FMovie= document.getElementById("flashmovie");
  FMovie.focus();

}
