<!-- 
function showFlash(strFlash) {

//alert(strFlash);

var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

if(hasRightVersion) {  // if we've detected an acceptable version
    document.write ('<div class="gedicht">');
    document.write(strFlash);   // embed the flash movie
    document.write('</div>');
  } 
else {  // flash is too old or we can't detect the plugin
    document.write ('<br><div class="gedicht" style="margin: 0px 0px 0px 30px; background-repeat:no-repeat;background-image: url(images/ph_video_noflash.jpg); height: 182px; width: 225px; border: 0px solid black;">');
    
    var alternateContent = '<div style=\"margin: 0px 0px 0px 0px;\"><B>Video van mare</b> <br /><br />'
  	+ 'Deze inhoud maakt gebruik van de Macromedia Flash Speler '+requiredMajorVersion+'.'+requiredMinorVersion+'.'+requiredRevision+' 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
    document.write('</div>');
 }

}
// -->
