function writeSubnavFlash(flashroot, id, webroot, imagesroot) {
	var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	// Check to see if the version meets the requirements for playback
	if (hasReqestedVersion) {
		var subpageFlashContent = '<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="60"><param name="movie" value="'+flashroot+'/sub_wrapper.swf?id='+id+'&webroot='+webroot+'" /><param name="quality" value="high" /><embed src="'+flashroot+'/sub_wrapper.swf?id='+id+'&webroot='+webroot+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer/" type="application/x-shockwave-flash" width="589" height="60"></embed></object>';
		document.write(subpageFlashContent);
	}
	else {
		var subpageAlternateContent ='<img src="'+imagesroot+'/noflash_subpage.gif" width="589" height="60" border="0" alt="We\'re brewing delicious new ways to serve coffee and tea." usemap="#m_noflash_subpage" /><map name="m_noflash_subpage"><area shape="rect" coords="0,0,214,60" href="'+webroot+'/hotbeverages/" title="Hot Brewed Coffee and Tea" alt="Hot Brewed Coffee and Tea" /><area shape="rect" coords="213,0,387,60" href="'+webroot+'/flavorsingredients/" title="Flavorings and Ingredients" alt="Flavorings and Ingredients" /><area shape="rect" coords="387,0,589,60" href="'+webroot+'/icedbeverages/" title="Iced Coffee and Tea Beverages" alt="Iced Coffee and Tea Beverages" /></map>';
		document.write(subpageAlternateContent);
	}
}