/* easycookiebox.com Orders=14879 15767 14748 Pro=enabled Getlanguage=en Multilanguage=enabled Language=en Regular=enabled */ var easycookieboxmessage = "

Cookies!

Like any website, this website uses cookies and possibly other techniques, some of which might already have been set. Cookies can be used for things like:

If you continue browsing this website, you permit us to use these cookies. If you wish to visit this site without cookies being set, click on the cookie settings link so you can use an easy and free tool to disable cookies on this website and any other website you visit.

For more info, see our Privacy Policy

Powered by easycookiebox.com"; var easycookieboxallow = "Accept Cookies"; var easycookieboxdismiss = "Cookie Settings"; var easycookieboxbackgroundcolor = "#252e39"; var easycookieboxtextcolor = "#ffffff"; var easycookieboxbuttonbackgroundcolor = "#14a7d0"; var easycookieboxbuttonbordercolor = "#14a7d0"; var easycookieboxbuttontextcolor = "#ffffff"; var easycookieboxposition = "bottom-left"; var easycookieboxstatic = false; var easycookieboxtheme = "default"; 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=/"; } } }