// Version check for the Flash Player that has the ability to start Player Product Install (6.0r65)
var hasProductInstall = DetectFlashVer(6, 0, 65);

// Version check based upon the values entered above in "Globals"
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

// Location visited after installation is complete if installation is required
var MMredirectURL = window.location;

// Stored value of document title used by the installation process to close the window that started the installation process
// This is necessary to remove browser windows that will still be utilizing the older version of the player after installation is complete
var prevTitle = document.title;
// DO NOT MODIFY THE FOLLOWING TWO LINES
/* document.title = document.title.slice(0, 47) + " - Flash Player Installation";
 var MMdoctitle = document.title;
// Check to see if a player with Flash Product Install is available and the version does not meet the requirements for playback
if ( hasProductInstall && !hasReqestedVersion ) {
    var productInstallOETags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="' + movWidth + '" height="' + movHeight + '"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="flash/playerProductInstall.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=ActiveX&MMdoctitle='+MMdoctitle+'" />'
    + '<param name="quality" value="high" /><param name="bgcolor" value="#000000" />'
	+ '<param name="wmode" value="transparent" />'
    + '<embed src="flash/playerProductInstall.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=PlugIn" quality="high" bgcolor="#000000" '
    + 'width="' + movWidth + '" height="' + movHeight + '" name="detectionTest" aligh="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
	+ 'wmode="transparent"'
    + 'allowScriptAccess="always"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
   
    document.write(productInstallOETags);   // embed the Flash Product Installation SWF */
if ( hasProductInstall && !hasReqestedVersion ) {	
	var alternateContent = '<img src="images/noscript.jpg">'
    document.write(alternateContent);  // insert non-flash content
} else if(hasReqestedVersion) {  // if we've detected an acceptable version
	document.title = prevTitle;
	//main
	var mainTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
	+ 'width="' + movWidth + '" height="' + movHeight + '" id="' + movName + '"'
	+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
	+ '<param name="allowScriptAccess" value="always" />'
	+ '<param name="movie" value="' + movSrc + '" />'
	+ '<param name="quality" value="best" />'
	+ '<param name="scale" value="noscale" />'
	+ '<param name="menu" value="false" />'
	+ '<param name="loop" value="false" />'
	+ '<param name="wmode" value="transparent" />'
	+ '<param name="bgcolor" value="' + document.bgColor + '" />'
	+ '<embed src="' + movSrc + '" quality="best" scale="noscale" bgcolor="' + document.bgColor + '" '
	+ 'width="' + movWidth + '" height="' + movHeight + '" id="' + movName + '" name="' + movName + '" align="middle"'
	+ 'play="true"'
	+ 'menu="false"'
	+ 'loop="false"'
	+ 'quality="best"'
	+ 'wmode="transparent"'
	+ 'allowScriptAccess="always"'
	+ 'type="application/x-shockwave-flash"'
	+ 'pluginspage="http://www.macromedia.com/go/getflashplayer" />'
	+ '<\/object>'
	document.write(mainTags);   // embed the flash movie
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = '<img src="images/noscript.jpg">'
    document.write(alternateContent);  // insert non-flash content
}

