function printFlashHTML(url, width, height, wmode)
{
	if (!wmode) { wmode = 'opaque'; }
	document.writeln('<OBJECT codeBase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0 height=' + height + ' width=' + width + ' classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000>');
	document.writeln('<PARAM NAME="Movie" VALUE="' + url + '">');
	document.writeln('<PARAM NAME="Src" VALUE="' + url + '">');
	document.writeln('<PARAM NAME="WMode" VALUE="' + wmode + '">');
	document.writeln('<PARAM NAME="Quality" VALUE="High">');
	document.writeln('<PARAM NAME="Menu" VALUE="false">');
	document.writeln('<EMBED src="' + url + '" wmode="' + wmode + '" quality=high width="' + width + '" height="' + height + '" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED></OBJECT>');
}
