<!-- 
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
var unique = new Date();
unique = unique.getFullYear() + "" + unique.getMonth() + "" + unique.getDate() + "" + unique.getHours() + "" + unique.getMinutes() + "" + unique.getSeconds();
	
	
if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '
    + 'width="261" height="200"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="/html/layout/flash/calendar.swf?unique=' + unique +'" />'
		+ '<param name="loop" value="false" />'
		+ '<param name="quality" value="best" />'
		+ '<param name="scale" value="exactfit" />'
		+ '<param name="wmode" value="transparent" />'
		+ '<param name="devicefont" value="true" />'
    + '<embed src="/html/layout/flash/calendar.swf?unique=' + unique +'" '
		+ 'loop="false" '
		+ 'quality="best" '
		+ 'scale="exactfit" '
		+ 'wmode="transparent" '	
		+ 'devicefont="true" '
    + 'width="261" 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 = '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>';
    document.write(alternateContent);  // insert non-flash content*/
}
// -->