<!-- 
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 animatie</b> <br /><br />'
  	+ 'Deze inhoud maakt gebruik van de Macromedia Flash Speler 7.0 of hoger.<br />'
   	+ '<a href=http://www.macromedia.com/go/getflash target=_blank />Download hier de Flash speler</a></div>';
    document.write(alternateContent);  // insert non-flash content
  }

}
// -->


