﻿// JScript File
<!--
// 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
	
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<div style="margin: 10px;"><p style="color:white;">This content requires the Adobe Flash Player. -  '
	+ '<a href=http://www.adobe.com/go/getflash/ style="color: white;" target="_blank" >Get Flash</a></p></div>';
	document.write(alternateContent);  // insert non-flash content
}
// -->