function writeSubNavFlash_easy(webroot,imagesroot) {
	/*
	alert("webroot="+webroot);
	alert("imagesroot="+imagesroot);
	*/
	// Check to see if the version meets the requirements for playback
	if (DetectFlashVer(8,0,0)) {
		/*--------------------------------------------------
		if we've detected an acceptable version, then show Flash content:
		--------------------------------------------------*/
		var defaultFlashContent = '<object ';
		defaultFlashContent += 'classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
		defaultFlashContent += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" ';
		defaultFlashContent += 'width="881" ';
		defaultFlashContent += 'height="67">';
		defaultFlashContent += '<param name="movie" value="'+webroot+'/flash/Nav_bar_easy.swf" />';
		defaultFlashContent += '<param name="quality" value="high" />';
		defaultFlashContent += '<param name="bgcolor" value="#FFFFFF" />';
		defaultFlashContent += '<param name="wmode" value="transparent" />';
		defaultFlashContent += '<param name="FlashVars" value="webroot='+webroot+'/" />';
		defaultFlashContent += '<embed src="'+webroot+'/flash/Nav_bar_easy.swf" wmode="transparent" FlashVars="webroot='+webroot+'/" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="881" height="67"></embed>';
		defaultFlashContent += '</object>';
		window.document.write(defaultFlashContent);
	}
	else {
		/*--------------------------------------------------
		can't detected an acceptable version, so show non-Flash content:
		--------------------------------------------------*/
		var alternateFlashContent = '<tr><td colspan="3"><img src="'+imagesroot+'/temp_nav_subpage.jpg" width="881" height="67" alt="" border="0" usemap="#map_navbenefits" /><map name="map_navbenefits"><area shape="rect" coords="47,0,161,67" href="'+webroot+'/easy_interface.cfm" title="Easy Interface" alt="Easy Interface" /><area shape="rect" coords="160,0,274,67" href="'+webroot+'/unmatched_service.cfm" title="Unmatched Service" alt="Unmatched Service" /><area shape="rect" coords="273,0,387,67" href="'+webroot+'/reliable_system.cfm" title="Reliable System" alt="Reliable System" /><area shape="rect" coords="386,0,500,67" href="'+webroot+'/global_reach.cfm" title="Global Reach" alt="Global Reach" /><area shape="rect" coords="499,0,613,67" href="'+webroot+'/custom_functionality.cfm" title="Custom Functionality" alt="Custom Functionality" /><area shape="rect" coords="612,0,726,67" href="'+webroot+'/flexible_integration.cfm" title="Flexible Integration" alt="Flexible Integration" /><area shape="rect" coords="725,0,839,67" href="'+webroot+'/measurable_results.cfm" title="Measurable Results" alt="Measurable Results" /></map></td></tr>';
		document.write(alternateFlashContent);
	}
}