<!--
// Version check based upon the values entered above in "Globals"
var hasReqestedVersion = DetectFlashVer(8, 8, 0);

// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed
	AC_FL_RunContent(
				"src", "flash/Spot",
				"play", "true",
				"width", "640",
				"height", "300",
				"scale", "noscale",
				"align", "left",
				"id", "startseite_swf",
				"quality", "high",
				"bgcolor", "#FFFFFF",
				"flashVars", "preload=flash/Spot.swf",
				"name", "startseite_swf",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
				"pluginspage", "http://www.macromedia.com/go/getflashplayer"
	);
} else {  
	// flash is too old or we can't detect the plugin
	var alternateContent = '<img src="flash/no_flash_static.jpg" width="640" height="300" alt="" title=""/>';
	document.write(alternateContent);  // insert non-flash content
}
// -->