<!--
	// -----------------------------------------------------------------------------
	// Globals
	// Major version of Flash required
	var requiredMajorVersion = 9;
	// 
	
	// Minor version of Flash required
	var requiredMinorVersion = 0;
	// Minor version of Flash required
	var requiredRevision = 0;
	//used later to display static image or random flash program
	var hasFlash = false;
	// -----------------------------------------------------------------------------

	// 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
		hasFlash = true;
		//window.location="index2.asp?detectflash=Yes";
		
		//AC_FL_RunContent(
			//		"src", "example",
				//	"width", "550",
					//"height", "200",
					//"align", "middle",
					//"id", "detectionExample",
				//	"quality", "high",
				//	"bgcolor", "#FFFFFF",
				//	"name", "detectionExample",
				//	"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
		//***default is to be false***
		//window.location="index2.asp?detectflash=No";
		
		//var alternateContent = 'Fidessa ® sdfasdf sdf <BR>'
		//+ 'This content requires the Adobe Flash Player. '
		//+ '<a href=http://www.adobe.com/go/getflash/>Get Flash</a>';
		//document.write(alternateContent);  // insert non-flash content
	}
//alert('hasFlash1='+hasFlash);

// -->