﻿// 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", "http://www.thecentregroup.com/flash/about",
				"width", "688",
				"height", "151",
				"align", "left",
				"id", "a1",
				"quality", "high",
				"name", "a3",
				"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="http://www.thecentregroup.com/images/interior_noflash.gif" alt="Please Download The Latest Version of Adobe Flash Player" width="688" height="151" usemap="#interior_noflashc1664567" border="0" /><map name="interior_noflashc1664567"><area shape="rect" coords="452,128,529,145" href="http://www.thecentregroup.com/about/what_we_think.html" alt="" /><area shape="rect" coords="341,127,430,145" href="http://www.thecentregroup.com/about/who_we_work_for.html" alt="" /><area shape="rect" coords="257,127,318,145" href="http://www.thecentregroup.com/about/who_we_are.html" alt="" /><area shape="rect" coords="162,128,240,145" href="http://www.thecentregroup.com/about/why_we_do_it.html" alt="" /></map>';
	document.write(alternateContent);  // insert non-flash content
}