function flash( name, width, height ) {
	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="' + width + '" HEIGHT="' + height + '" ID="' + name + '">' );
	document.write( '<PARAM NAME="movie" VALUE="' + name + '">' );
	document.write( '<PARAM NAME="wmode" VALUE="transparent">' );
	document.write( '<PARAM NAME="menu" VALUE="false">' );
	document.write( '<PARAM NAME="quality" VALUE="best">' );
	document.write( '<EMBED SRC="' + name + '" MENU="false" QUALITY="best" WMODE="transparent" WIDTH="' + width + '" HEIGHT="' + height + '" NAME="' + name + '" ' );
	document.write( 'TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>' );
	document.write( '</OBJECT>' );
}