<!-- oh, thank you for this, Microsoft.... -->
<!-- 
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<div style="height:15px;">&nbsp;</div>'
    + '<div style="height:300; margin:10px; padding:10px; background-color:burlywood;">'
    + '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="352" height="280"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
	+ '<param name="FlashVars" value="VideoURL='+ getURL() + '" />'
    + '<param name="wmode" value="transparent" /><param name="movie" value="LoadFLV.swf" />'
    + '<param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />'
    + '<embed src="LoadFLV.swf" quality="high" bgcolor="#ffffff" wmode="transparent" '
    + 'width="320" height="280" name="test" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer"'
    + 'FlashVars="VideoURL=' + getURL() + '">'
    + '<\/embed>'
    + '<\/object></div>';
    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = 'The latest Adobe Flash Player must be installed to view videos.<br />' +
            '<a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&promoid=BIOW">' +
            '<img src="images/get_flashplayer.gif" width="88" height="31" hspace="5" border="0" align="absmiddle"></a>&nbsp;' +
            '<a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&promoid=BIOW">Get the Adobe Flash Player</a>';
    document.write(alternateContent);  // insert non-flash content
  }
// -->

