function embedFlash(swfFile, fWidth, fHeight, flashVars)
{
	var OETags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
	+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" '
	+ 'id="swfContent" '
	+ 'width="'+fWidth+'" '
	+ 'height="'+fHeight+'" '
	+ '>'
	+ '<param name="allowScriptAccess" value="sameDomain" />'
	+ '<param name="Autostart" value="true" />'
	+ '<param name="bgcolor" value="#000000" />'
	+ '<param name="flashVars" value="'+flashVars+'" />'
	+ '<param name="loop" value="false" />'
	+ '<param name="menu" value="false" />'
	+ '<param name="movie" value="'+swfFile+'" />'
	+ '<param name="quality" value="high" />'
	+ '<param name="salign" value="" />'
	+ '<param name="scale" value="noscale" />'
	+ '<param name="SeamlessTabbing" value="false" />'
	+ '<param name="wmode" value="transparent" />'
	+ '<embed src="'+swfFile+'" '
	+ 'name="swfContent" '
	+ 'width="'+fWidth+'" '
	+ 'height="'+fHeight+'" '
	+ 'align="middle" '
	+ 'allowScriptAccess="sameDomain" '
	+ 'bgcolor="#000000" '
	+'wmode="transparent"'
	+ 'flashVars="'+flashVars+'" '
	+ 'loop="false" '
	+ 'menu" value="false" '
	+ 'quality="high" '
	+ 'scale="noscale" '
	+ 'SeamlessTabbing="false" '
	+ 'swLiveConnect="true" '
	+ 'type="application/x-shockwave-flash" '
	+ 'pluginspage="http://www.macromedia.com/go/getflashplayer" '
	+ '<\/embed>'
	+ '<\/object>';
	document.write(OETags);   // embed the Flash Product Installation SWF
}