// 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", "http://www.westhouse-troutlakes.co.uk/hadrianequine/flash/flash",
				"width", "886",
				"height", "447",
				"id", "stage",
				"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 = '<img src="http://www.westhouse-troutlakes.co.uk/hadrianequine/images/flash_img_001.jpg">'
	+ '<div style="width:846px;height:21px;padding-top:4px;padding-left:20px;padding-right:20px;background:#FFFFFF;border-top:1px solid #C9B382;border-bottom:1px solid #C9B382;font-family: Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#000000;">The image gallery requires Flash Player 8 and upwards. For improved fuctionality please <a href=http://www.adobe.com/go/getflash/ target="_blank" style="color:#000000;">download the latest Flash Player</a></div>';
	document.write(alternateContent);  // insert non-flash content
}