function WriteFlash (strFile, intWidth, intHeight, strWmode)
{
	if (navigator.userAgent.indexOf("MSIE") != -1) {
		document.write ('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
		document.write ('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"');
		document.write ('width="' + intWidth + '"');
		document.write ('height="' + intHeight + '">');
	} else {
		document.write ('<object data="' + strFile + '"');
		document.write ('width="' + intWidth + '"');
		document.write ('height="' + intHeight + '"');
		document.write ('type="application/x-shockwave-flash">');
	}
	document.write ('<param name="movie" value="' + strFile + '" />');
	document.write ('<param name="quality" value="high" />');
	document.write ('<param name="bgcolor" value="#FFFFFF" />');
	document.write ('<param name="menu" value="false" />');
	document.write ('<param name="wmode" value="' + strWmode + '" />');
	document.write ('<p>&nbsp;</p>');
	document.write ('<p style="text-align: center;">This browser does not have a Flash Plug-in.<br />');
	document.write ('<b><a href="http://www.macromedia.com/go/getflashplayer">Get the latest Flash Plug-in here</a></b></p>');
	document.write ('</object>');
}