<!-- 
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '
    + 'width="848" height="200"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="/html/layout/flash/homepage/homepage_rotate.swf" />'
		+ '<param name="loop" value="false" />'
		+ '<param name="quality" value="best" />'
		+ '<param name="scale" value="exactfit" />'
		+ '<param name="wmode" value="transparent" />'
		+ '<param name="flashvars" value="link_str=/mlv/kalender/m_levendleut_overzicht/">'
		+ '<param name="devicefont" value="true" />'
    + '<embed src="/html/layout/flash/homepage/homepage_rotate.swf" '
		+ 'loop="false" '
		+ 'quality="best" '
		+ 'scale="exactfit" '
		+ 'wmode="transparent" '	
		+ 'flashvars="link_str=/mlv/kalender/m_levendleut_overzicht/"'
		+ 'devicefont="true" '
    + 'width="848" height="200" '
    + 'play="true" '
    + 'loop="false" '
    + 'allowScriptAccess="sameDomain" '
    + 'type="application/x-shockwave-flash" '
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags);   // embed the flash movie
 } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<div style="top:75px; margin-bottom:75px; position: relative; width:848px;text-align:center">Om deze info te tonen heeft u flashplayer ' + requiredMajorVersion + ' of hoger nodig! <br/>'
   	+ '<a href=http://www.macromedia.com/go/getflash/>Klik hier om deze te downloaden!</a></div>';
    document.write(alternateContent);  // insert non-flash content*/
}
// -->