//register globals required for flash version detection
var requiredMajorVersion = 7;		// Major version of Flash required
var requiredMinorVersion = 0;		// Minor version of Flash required
var requiredRevision = 0;			// Minor version of Flash required


//===================================================================
//function used to load main flash file (Power to Ontario. On Demand)
function odim_flash_version() {

	//set major version of flash required to 5
	requiredMajorVersion = 6;

	//check to see if the requested version is present
	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", "MSLine",
					"width", "520",
					"height", "280",
					"align", "middle",
					"id", "OntarioDemandFlash",
					"quality", "high",
					"bgcolor", "#FFFFFF",
					"name", "OntarioDemandFlash",
					"allowScriptAccess","sameDomain",
					"type", "application/x-shockwave-flash",
					'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
					"pluginspage", "http://www.adobe.com/go/getflashplayer",
					"wmode", "transparent",
					"classid", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000",
					"FlashVars", "&dataURL=xml/EarthHour-2010.xml"
		);
	} else {  // flash is too old or we can't detect the plugin
		var alternateContent = '<img src="/earthhour/images/graph.png" width="520" height="280" align="bottom" border="0" alt="Flash Player 8+ required to view animated Ontario Demand graph. Upgrade your Flash Player for a better website experience"></a>'
		document.write(alternateContent);  // insert non-flash content
	}

}
//===================================================================

