// Version check based upon the values entered above in "Globals"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	// embed the Flash Content SWF when all tests are passed	AC_FL_RunContent(				"src", "swf/home",				"width", "457",				"height", "584",				"align", "middle",				"id", "detectionExample",				"quality", "high",				"wmode", "transparent",				"name", "detectionExample",				"allowScriptAccess","sameDomain",				"type", "application/x-shockwave-flash",				'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',				"pluginspage", "http://www.adobe.com/go/getflashplayer"	);} else {  // flash is too old or we can't detect the plugin	var alternateContent = 'img src="immagini/palme.gif" alt="" border="0" usemap="#Map" /><map name="Map"><area shape="circle" coords="137,408,22" href="estrazione.html" alt="l\'estrazione"><area shape="circle" coords="184,410,22" href="foto1.html" alt="foto1"><area shape="circle" coords="164,455,22" href="foto2.html" alt="foto2"><area shape="circle" coords="281,182,21" href="index.html" alt="home"><area shape="circle" coords="300,133,21" href="barista.html" alt="il barista"><area shape="circle" coords="333,183,21" href="vincitrice.html" alt="la vincitrice"></map>';	document.write(alternateContent);  // insert non-flash content}
