<!-- 
function showFlash(strFlash) {

//alert(strFlash);

var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

if(hasRightVersion) {  // if we've detected an acceptable version
    document.write(strFlash);   // embed the flash movie
  } 
else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<div style=\"margin: 10px 10px 10px 10px;\"><B>FLASH animation</b> <br /><br />'
  	+ 'This website contains flash elements. To view these elements you need Macromedia Flash Player 7.0 or higher.<br />'
   	+ 'Download it <a href=http://www.macromedia.com/go/getflash target=_blank />here</a></div>';
    document.write(alternateContent);  // insert non-flash content
  }

}
// -->
