/* easycookiebox.com Orders=14879 Pro=enabled Getlanguage=nl Multilanguage=disabled Language=nl Regular=enabled */ var easycookieboxmessage = "

Cookies!

Zoals bijna elke website maakt ook deze website gebruik van cookies, waarvan sommige al geplaatst kunnen zijn. Cookies kunnen nodig zijn voor het:

Als je deze website bekijkt gaan we ervan uit dat je ons toestemming verleent om deze cookies en mogelijk andere technieken te (laten) plaatsen. 

Wil je dat niet, klik dan op cookies instellen. Dan kun je een gemakkelijke, gratis tool gebruiken waarmee je cookies en advertenties van deze en elke andere site die je bezoekt gemakkelijk kunt blokkeren en beheren en waarmee je kunt instellen dat je niet getrackt kunt worden.

Meer uitleg vindt je in ons privacybeleid.

"; var easycookieboxallow = "Cookies Toestaan"; var easycookieboxdismiss = "Cookies Instellen"; var easycookieboxbackgroundcolor = "#606060"; var easycookieboxtextcolor = "#e7e4e4"; var easycookieboxbuttonbackgroundcolor = "#e7e4e4"; var easycookieboxbuttonbordercolor = "#e7e4e4"; var easycookieboxbuttontextcolor = "#2e4c5a"; var easycookieboxposition = "bottom-left"; var easycookieboxstatic = false; var easycookieboxtheme = "classic"; var easycookieboxtype = "opt-in"; // This file is outputed by easycookiebox.php to the browser // it includes the cookieconsent script and css and also // initializes the cookieconsent cookiebox based on the given // variables from easycookiebox.php function includeJS(url) // Append a javascript url to the browser script tag so it will be loaded { var script = document.createElement("script"); // Make a script DOM node script.src = url; // Set it's src to the provided URL document.head.appendChild(script); // Add it to the end of the head section of the page (could change 'head' to 'body' to add it to the end of the body section instead) } function includeCSS(url) // Append a css url to the browser css link tag so it will be loaded { var link = document.createElement( "link" ); link.href = url; link.type = "text/css"; link.rel = "stylesheet"; link.media = "screen,print,projection"; document.getElementsByTagName( "head" )[0].appendChild( link ); } // Load the correct cookieconsent css and js for test or production site var scripts = document.getElementsByTagName('script'); var index = scripts.length - 1; var src = scripts[index].src; if (src.search("testscript.easycookiebox.com") < 0) { includeCSS("https://script.easycookiebox.com/cookieconsent.min.css"); includeJS("https://script.easycookiebox.com/cookieconsent.js"); } else { includeCSS("https://testscript.easycookiebox.com/cookieconsent.min.css"); includeJS("https://testscript.easycookiebox.com/cookieconsent.js"); } // Add an onload eventlister to initialize cookieconsent window.addEventListener("load", function(){ window.cookieconsent.initialise({ "palette": { "popup": { "background": easycookieboxbackgroundcolor, "text": easycookieboxtextcolor }, "button": { "background": easycookieboxbuttonbackgroundcolor, "text": easycookieboxbuttontextcolor, "border": easycookieboxbuttonbordercolor } }, "theme": easycookieboxtheme, "position": easycookieboxposition, "static": easycookieboxstatic, "showlink": false, "type": easycookieboxtype, "content": { "message": easycookieboxmessage, "allow": easycookieboxallow, "dismiss": easycookieboxdismiss, "link": "", "href": "" }, onStatusChange: function(status, chosenBefore) // This function is called when the user chooses to allow or deny cookies { var type = this.options.type; var didConsent = this.hasConsented(); if (type == 'opt-in' && didConsent) { if (status == "allow") acceptcookies(); else denycookies(); } }, }); }); function acceptcookies() // This function is called when cookies are accepted, we don't do anything in this case { } function denycookies() // This function is called when cookies are denied, we redirect to ghostery.com and expire all cookies { window.open("https://www.ghostery.com/products"); expirecookies(); } function expirecookies() // This function tries to expire all cookies from this domain so they are deleted by the browser { var c = document.cookie.split("; "); for (i in c) { var cookiename = /^[^=]+/.exec(c[i])[0]; if (cookiename != "cookieconsent_status") { document.cookie =/^[^=]+/.exec(c[i])[0]+"=;expires=Thu, 01 Jan 1970 00:00:00 GMT"; document.cookie =/^[^=]+/.exec(c[i])[0]+"=;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/"; } } }