var flash_id = 0;
function displayFlash(strFlashFile, wiFlash, heFlash, bgColor) {
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"'
	+ '	width="' + wiFlash + '" height="' + heFlash + '" id="flash_' + (++flash_id) + '" align="middle" VIEWASTEXT>'
	+ '	<param name="allowScriptAccess" value="sameDomain" />'
	+ '	<param name="movie" value="' + strFlashFile + '" />'
	+ '	<param name="quality" value="high" />'
	+ '	<param name="menu" value="false" />'
	+ '	<param name="bgcolor" value="' + (bgColor ? bgColor : "") + '" />'
	+ '	<embed src="' + strFlashFile + '" quality="high" width="' + wiFlash + '" height="' + heFlash + '" name="' + flash_id + '"'
	+ '		menu="false" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"'
	+ '		pluginspage="http://www.macromedia.com/go/getflashplayer" bgcolor="' + (bgColor ? bgColor : "") + '" />'
	+ '</object>');
}
