<!-- 
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="100%" height="100%"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="gc">'
    + '<param name="movie" value="_swf/_gcMainWeb.swf?useActiveX=1" />'
	+ '<param name="allowScriptAccess" value="always" />'
	+ '<param name="loop" value="false" />'
	+ '<param name="menu" value="false" />'
	+ '<param name="quality" value="high" />'
	+ '<param name="scale" value="noscale" />'
	+ '<param name="bgcolor" value="#EAEAEA" />'
	+ '<param name="FlashVars" value="gcServerRoot='+gcServerRoot+'&akServerRoot='+akServerRoot+'" />'
    + '<embed src="_swf/_gcMainWeb.swf" loop="false" menu="false" quality="high" bgcolor="#EAEAEA" '
    + 'width="100%" height="100%" name="gc" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
	+ 'scale="noscale"'
    + 'allowScriptAccess="always"'
	+ 'FlashVars="gcServerRoot='+gcServerRoot+'&akServerRoot='+akServerRoot+'"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
	document.write(oeTags);
  } else {
    var alternateContent = '<span class="gcAlertSwf"><br /><a href="http://www.adobe.com/go/getflashplayer" target="_blank" border="0">'
	+ '<img src="_img/160x41_Get_Flash_Player.jpg" alt="Get Adobe Flash Player" width="160" height="41" border="0"></a><br /><br />This content requires the Adobe Flash Player<br /><br />'
	+ '<a href="http://www.adobe.com/go/getflashplayer" target="_blank" class="gcGetFlash"><strong>Get Adobe Flash Player</strong></a>'
    + '<br />&nbsp;</span>';
	document.write(alternateContent);
  }
// -->