		// 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", "/images/eurosignal_130x130.swf",
				"width", "130",
				"height", "130",
				"align", "middle",
				"id", "globe",
				"quality", "high",
				"wmode", "transparent",
				"name", "globe",
				"movie","/images/eurosignal_130x130",
				"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 {  document.write('<img src="/images/head.jpg" />');
			document.write(alternateContent);  // insert non-flash content
		}



