// 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", "myroom_flash/src/teaser",				"width", "1160",				"height", "600",				"align", "middle",				"quality", "high",				"bgcolor", "#4B2A17",				"name", "detectionExample",				"menu", "false",				"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 = '<p class="error">Il contenuto di questo sito richiede Adobe Flash Player ed un browser con JavaScript abilitato. <a href="http://www.adobe.com/go/getflash/" target="_blank">Scarica Flash ora.</a></p>';	document.write(alternateContent);  // insert non-flash content}
