


var hasReqestedVersion = DetectFlashVer(8,0,0);

if (!hasReqestedVersion) {
	var alternateContent = 'We have detected your Internet Browser does not have a recent enough version of Flash Player (8+) installed to access this course.<br/>'
      + 'If you can install software on this computer, you can download the latest version of Flash Player <a href=http://www.adobe.com/go/getflash/>here</a><br/>'
	+ 'Otherwise you will need to contact your system administrator or IT support.'
	document.write(alternateContent);  // insert non-flash content
}else{
	var theDiv = document.getElementById("engineDiv");
	theDiv.innerHTML =	'<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ' +
					' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" ' +
					' ID=engine WIDTH=1008 HEIGHT=632>' +
					'<PARAM NAME=movie VALUE="launcher.swf">' +
					'<PARAM NAME=loop VALUE=false>' +
					'<PARAM NAME=quality VALUE=best>' +
					'<PARAM NAME=scale VALUE=noborder>' +
					'<PARAM NAME=bgcolor VALUE=#FFFFFF>' +
					'<EMBED src="launcher.swf" loop=false quality=best scale=noborder bgcolor=#FFFFFF  WIDTH=1008 HEIGHT=632 ' +
					' swLiveConnect=true NAME=engine TYPE="application/x-shockwave-flash" ' +
					' PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>' +
					'</OBJECT>';
}