<!-- 
// 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
// DO NOT MODIFY THE FOLLOWING TWO LINES
document.title = document.title.slice(0, 47) + " ";
var MMdoctitle = document.title;

// User has Flash, but old version - Install Flash
if ( hasProductInstall && !hasReqestedVersion ) {
    var productInstallOETags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="550" height="300"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="swf/playerProductInstall.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=ActiveX&MMdoctitle='+MMdoctitle+'" /><param name="bgcolor" value="#2b558e" /><param name="scale" value="noscale" /><param name="salign" value="m" /><param name="menu" value="false" />'
    + '<param name="quality" value="high" /><PARAM NAME=wmode VALUE=transparent>'
    + '<embed src="swf/playerProductInstall.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=PlugIn" quality="high" wmode="transparent" scale="noscale" salign="m" menu="false" '
    + 'width="550" height="300" name="detectiontest" aligh="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
	   document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td align="center" valign="middle">');
document.write(productInstallOETags);   // embed the Flash Product Installation SWF
document.write('</td></tr></table>');    
} 

//User has Flash and correct version - continue to site
else if (hasReqestedVersion) { 
	var page = "home.html"
	document.location = page;
 } 
  
// Flash is too old or we can't detect the plugin
else {  
   document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td align="center" valign="middle">');
document.write('<a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" onfocus="this.blur();" target="_new">');
document.write('<img src="images/im_noflash.gif" alt="" width="300" height="230" border="0"></a></td></tr></table>');
}
	
// 
-->