var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="780" height="324"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="index_flash_11.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#fff9dc" />'
    + '<embed src="index_flash_11.swf" quality="high" bgcolor="#fff9dc" '
    + 'width="780" height="324" name="index_flash_11" align="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(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<p class="textjustify"><span style="font-size:1.4em;  "><a href="aboutus.htm" style="color:#333;">About us</a>&nbsp;&nbsp;&nbsp;<a href="whatwedo.htm"style="color:#333;">What we do</a>&nbsp;&nbsp;&nbsp;<a href="achievements.htm"style="color:#333;">Achievements</a>&nbsp;&nbsp;&nbsp;<a href="contactus.htm"style="color:#333;">Contact us</a></span></p>'
  	+ '<p class="textjustify">This content requires the Macromedia Flash Player.</p>'
   	+ '<p class="textjustify"><a href=http://www.macromedia.com/go/getflash/>Get Flash</a> if you wish to update your web browser.</p>'
	+ '<p class="textjustify">Alternatively, please select this <a href="http://www.psynapse-consulting.com/home.htm">psynapse home page</a>  link to enter the psynapse site directly.</p>';
    document.write(alternateContent);  // insert non-flash content
  }
