var versionDetect = JSGetSwfVer();
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<style type="text/css">td img {display: block;}'
  		+ 'BODY { '
  		+ '	color:#FFFFFF;'
  		+ '	text-decoration:none;'
  		+ '}'
  		+ 'A:LINK {'
  		+ '	color:FF9900;'
  		+ '	text-decoration:none;'
  		+ '}'
  		+ 'A:VISITED {'
  		+ '	color:FF9900;'
  		+ '	text-decoration:none;'
  		+ '}'
  		+ '</style>'
  		+ 'This site requires the Macromedia Flash Player 6 or better.<br>'
  		+ 'You have flash verison '+ versionDetect+'<br>'
   	+ '<a href=http://www.macromedia.com/go/getflash/>Go here to get the latest version of flash.</a>';
    document.write(alternateContent);  // insert non-flash content
  }
