var flashCheck = deconcept.SWFObjectUtil.getPlayerVersion();
var flashVersion = flashCheck['major'] + "." + flashCheck['minor'];

function writeFlashFoodSelect(divLayer,flashVars){	
	if (document.getElementById) {
		if (flashCheck['major'] > 6) {
				contentString = '<object width="714" height="225" data="graphics/flash/food_select.swf" type="application/x-shockwave-flash">';
				contentString += '<param name="movie" value="graphics/flash/food_select.swf" />';
				contentString += '<param name="FlashVars" value="' + flashVars + '">';
				contentString += '</object>';		

				document.getElementById(divLayer).innerHTML = contentString;
		}else{
				contentString = '<div class="flashVersion" id="flashVersion" style="width:714px;margin-top:100px;text-align:center;border:1px solid #573009;padding:10px 0px 10px 0px">Installieren Sie das aktuelle Flash-Plugin um sich Ihr Men&uuml; zusammenstellen zu k&ouml;nnen: <a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">get Flashplayer</a></div>';
		}
		
		document.getElementById(divLayer).innerHTML = contentString;
	}
}


function writeFlashHeader(divLayer,flashVars,altImage,flashPath){	
	if (document.getElementById) {
		if (flashCheck['major'] > 6) {
				contentString = '<object width="714" height="225" data="'+ flashPath +'" type="application/x-shockwave-flash">';
				contentString += '<param name="movie" value="'+ flashPath +'" />';
				contentString += '<param name="FlashVars" value="' + flashVars + '">';
				contentString += '</object>';		

				document.getElementById(divLayer).innerHTML = contentString;
		}else{
				contentString = '<img src="' + altImage + '" width="714" height="225" alt="" />';
		}
		
		document.getElementById(divLayer).innerHTML = contentString;
	}
}