// JavaScript Document
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<div id="fish22">'
	+ '<embed src="../2fish.swf" quality="high" wmode="transparent" bgcolor="#ffffff" '
    + 'width="140" height="310" name="2fish" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
	+ '</div>';
    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<div id="fish1"><img src="../images/fish1.gif" alt="David Hume" /></div>'
	+ '<div id="fish2"><img src="../images/fish2.gif" alt="Sebastion" /></div>';
    document.write(alternateContent);  // insert non-flash content
  }
// -->
