function writeHomeFlash(webroot, 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 = '<div style="position: relative; z-index: 99;"><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="882" ';
		defaultFlashContent += 'height="500">';
		defaultFlashContent += '<param name="movie" value="'+webroot+'/flash/Sabre_final.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/Sabre_final.swf" wmode="transparent" FlashVars="webroot='+webroot+'/" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="882" height="500"></embed>';
		defaultFlashContent += '</object></div>';
		defaultFlashContent += '<div style="position: relative; z-index: 1000; top: -144px; left: 79px;"><a target="new" href="resources/videos/summit2009/" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage(\'ttp1\',\'\',\''+imagesroot+'/bttn_home_fortune200_on.jpg\',1)"><img src="'+imagesroot+'/spacer.gif" width="305" height="131" alt="" border="0" name="ttp1" /></a></div>';
		defaultFlashContent += '<div style="width: 800px; position: relative; z-index: 0; top: -275px;"><table border="0" cellpadding="0" cellspacing="0"><tr><td valign="top"><img src="'+imagesroot+'/spacer.gif" width="79" height="179" alt="" border="0" /></td><td valign="top"><img src="'+imagesroot+'/bttn_home_fortune200_off.jpg" width="305" height="131" alt="" border="0" name="ttp" />';
		window.document.write(defaultFlashContent);
	}
	else {
		/*--------------------------------------------------
		can't detected an acceptable version, so show non-Flash content:
		--------------------------------------------------*/
		var alternateFlashContent = '<div style="position: relative;">';
		alternateFlashContent += '<img src="'+imagesroot+'/temp_flash.jpg" width="882" height="343" border="0" alt="" usemap="#map_homeflash" />';
		alternateFlashContent += '<map name="map_homeflash">';
		alternateFlashContent += '<area shape="rect" coords="46,0,160,55" href="'+webroot+'/easy_interface.cfm" title="Easy Interface" alt="Easy Interface" />';
		alternateFlashContent += '<area shape="rect" coords="159,0,273,55" href="'+webroot+'/unmatched_service.cfm" title="Unmatched Service" alt="Unmatched Service" />';
		alternateFlashContent += '<area shape="rect" coords="272,0,386,55" href="'+webroot+'/reliable_system.cfm" title="Reliable System" alt="Reliable System" />';
		alternateFlashContent += '<area shape="rect" coords="385,0,499,55" href="global_reach.cfm" title="Global Reach" alt="Global Reach" />';
		alternateFlashContent += '<area shape="rect" coords="498,0,612,55" href="'+webroot+'/custom_functionality.cfm" title="Custom Functionality" alt="Custom Functionality" />';
		alternateFlashContent += '<area shape="rect" coords="611,0,725,55" href="'+webroot+'/flexible_integration.cfm" title="Flexible Integration" alt="Flexible Integration" />';
		alternateFlashContent += '<area shape="rect" coords="724,0,838,55" href="'+webroot+'/measurable_results.cfm" title="Measurable Results" alt="Measurable Results" />';
		alternateFlashContent += '<area shape="rect" coords="211,258,311,282" href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" target="_blank" title="Adobe Flash Player" alt="Adobe Flash Player" />';
		alternateFlashContent += '<area shape="rect" coords="561,223,811,247" href="'+webroot+'/easy_interface.cfm" title="Learn more about GetThere" alt="Learn more about GetThere" />';
		alternateFlashContent += '<area shape="rect" coords="561,247,811,271" href="'+webroot+'/contact/sales.cfm" title="Contact us for a demo or free quote" alt="Contact us for a demo or free quote" />';
		alternateFlashContent += '</map></div>';
		alternateFlashContent += '<div style="width: 800px; position: relative; z-index: 0; top: 275px;">';
		alternateFlashContent += '<div style="width: 800px; position: relative; z-index: 0; top: -275px;"><table border="0" cellpadding="0" cellspacing="0"><tr><td valign="top"><img src="'+imagesroot+'/spacer.gif" width="79" height="179" alt="" border="0" /></td><td valign="top"><a target="new" href="resources/videos/summit2009/" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage(\'ttp\',\'\',\''+imagesroot+'/bttn_home_fortune200_on.jpg\',1)"><img src="'+imagesroot+'/bttn_home_fortune200_off.jpg" width="305" height="131" alt="" border="0" name="ttp" /></a>';
		document.write(alternateFlashContent);
	}
}