///////////////////////////////////////////////////////////// // // Author Scott Herbert (www.scott-herbert.com) // // Version History // 1 (19-June-2011) Inital release on to Google code. // // // function getCookie(c_name) { var i,x,y,ARRcookies=document.cookie.split(";"); for (i=0;i < ARRcookies.length;i++) { x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("=")); y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1); x=x.replace(/^\s+|\s+$/g,""); if (x==c_name) { return unescape(y); } } } function displayNotification() { // this sets the page background to semi-transparent black should work with all browsers var message = "
"; // center vert message = message + "
"; // this is the message displayed to the user. message = message + "Deze website gebruikt cookies. Wilt u meer weten over cookies? Meer informatie "; // Displays the I agree/disagree buttons. // Feel free to change the address of the I disagree redirection to either a non-cookie site or a Google or the ICO web site message = message + "

" + ""; // and this closes everything off. message = message + "
"; document.writeln(message); } function setCookie(c_name,value,exdays) { var exdate=new Date(); exdate.setDate(exdate.getDate() + exdays); var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString()); document.cookie=c_name + "=" + c_value+ "; SameSite=None; Secure; path=/"; // set cookiewarning to hidden. var cw = document.getElementById("cookiewarning"); if(cw != null) { cw.innerHTML = ""; } } function checkCookie() { var cookieName="jsCookieCheck"; var cookieChk=getCookie(cookieName); if (cookieChk!=null && cookieChk!="") { // the jsCookieCheck cookie exists so we can assume the person has read the notification within the last year setCookie(cookieName,cookieChk,365); // set the cookie to expire in a year. } else { // No cookie exists, so display the lightbox effect notification. displayNotification(); } } checkCookie();