// Version check basedupon 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", "assets/templates/northumberland/flash/btn360_luckermill",
				"width", "260",
				"height", "65",
				"id", "panorama",
				"quality", "high",
				"autostart", "true",
				"showcontrols", "false",
				"showstatusbar", "true",
				"showdiplay", "false",
				"autorewind", "true",
				"allowScriptAccess","sameDomain",
				"bgcolor", "#000000",
				"name", "navigation",
				"wmode","transparent",
				"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 = '<a href="http://www.adobe.com/go/getflash/" target="_blank"><img src="assets/templates/northumberland/images/img_360_noflash.gif"></a>';
	document.write(alternateContent);  // insert non-flash content
}