
<!--
// 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", loader_src,
		"FlashVars", 'source_url=' + jawsExtension + '&' + flashParams,
		"width", "100%",
		"height", "100%",
		"align", "middle",
		"id", "pedagogue_content_interface",
		"quality", "high",
		"bgcolor", bkgd_colour,
		"name", "pedagogue_content_interface",
		"allowScriptAccess","sameDomain",
		"type", "application/x-shockwave-flash",
		'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
		"pluginspage", "http://www.adobe.com/go/getflashplayer",
		"salign", "lt",
		"scale", "noscale",
		"menu", "false"
);
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<div class="pink_banner"><h1>Important Information</h1></div><p>This content requires the Adobe Flash Player version 8 or above to run correctly. You can install it here:</p><ul><li><a href="http://www.adobe.com/products/flashplayer/">Flash Player for Windows 98, XP and Vista / Mac OSX and above</a></li><li><a href="http://download.macromedia.com/pub/flashplayer/installers/current/7/install_flash_player_7_ax.exe">Flash Player for Internet Explorer for Windows NT/95</a></li><li><a href="http://download.macromedia.com/pub/flashplayer/installers/current/7/install_flash_player_7.exe">Flash Player for Netscape, Mozilla and Firefox for Windows NT/95</a></li><li><a href="http://download.macromedia.com/pub/flashplayer/installers/current/7/install_flash_player_7.hqx">Flash Player for Mac OS9.2 and below</a></li><li><a href="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash&P2_Platform=Linux">Flash Player for Linux (x86)</a></li></ul><p>If you have installed the Flash Player and the content still does not run correctly, please email us for assistance at <a href="mailto:office@cdsm.co.uk?subject=For Attention of Flash Team: Cannot install Flash" class="fail">office@cdsm.co.uk</a></p>';
	document.write(alternateContent);  // insert non-flash content
}
// -->