function writeHomeFlash(flashroot, id, webroot, imagesroot) {
	var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	// Check to see if the version meets the requirements for playback
	if (hasReqestedVersion) {
		// if we've detected an acceptable version
		var homeFlashTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab##version=6,0,29,0" width="589" height="368"><param name="movie" value="'+flashroot+'/home.swf?id='+id+'&webroot='+webroot+'" /><param name="quality" value="high" /><embed src="'+flashroot+'/home.swf?id='+id+'&webroot='+webroot+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer/" type="application/x-shockwave-flash" width="589" height="368"></embed></object>';
		document.write(homeFlashTags);
	}
	else {
		// flash is too old or too new that we can't detect the plugin
		var homeAlternateContent = '<img name="noflash_home" src="'+imagesroot+'/noflash_home.jpg" width="589" height="368" border="0" usemap="#m_noflash_home" alt=""><map name="m_noflash_home"><area shape="rect" coords="0,0,212,368" href="'+webroot+'/hotbeverages/" title="Hot Brewed Coffee and Tea" alt="Hot Brewed Coffee and Tea" /><area shape="rect" coords="212,0,388,368" href="'+webroot+'/flavorsingredients/" title="Flavorings and Ingredients" alt="Flavorings and Ingredients" /><area shape="rect" coords="388,0,589,368" href="'+webroot+'/icedbeverages/" title="Iced Coffee and Tea Beverages" alt="Iced Coffee and Tea Beverages" /></map>';
		document.write(homeAlternateContent);
	}
}
