var TimeToFade = 250.0; function fade(eid) { var element = document.getElementById(eid); if(element == null) return; if(element.FadeState == null) { if(element.style.opacity == null || element.style.opacity == '' || element.style.opacity == '1') { element.FadeState = -2; } else { element.FadeState = 2; } } if(element.FadeState == 1 || element.FadeState == -1) { element.FadeState = element.FadeState == 1 ? -1 : 1; element.FadeTimeLeft = TimeToFade - element.FadeTimeLeft; } else { element.FadeState = element.FadeState == 2 ? -1 : 1; element.FadeTimeLeft = TimeToFade; element.style.display = element.FadeState == 2 ? 'none' : 'block'; setTimeout("animateFade(" + new Date().getTime() + ",'" + eid + "')", 33); } } function animateFade(lastTick, eid) { var curTick = new Date().getTime(); var elapsedTicks = curTick - lastTick; var element = document.getElementById(eid); if(element.FadeTimeLeft <= elapsedTicks) { element.style.display = element.FadeState == 1 ? 'block' : 'none'; element.style.opacity = element.FadeState == 1 ? '1' : '0'; element.style.filter = 'alpha(opacity = ' + (element.FadeState == 1 ? '100' : '0') + ')'; element.FadeState = element.FadeState == 1 ? 2 : -2; return; } element.FadeTimeLeft -= elapsedTicks; var newOpVal = element.FadeTimeLeft/TimeToFade; if(element.FadeState == 1) newOpVal = 1 - newOpVal; newOpVal = newOpVal*0.85; element.style.opacity = newOpVal; element.style.filter = 'alpha(opacity = ' + (newOpVal*100) + ')'; setTimeout("animateFade(" + curTick + ",'" + eid + "')", 33); } var t = ''; function removeDiv(id){ fade(id); var div = document.getElementById(id); setTimeout(function(){ div.parentNode.removeChild(div) } ,2000); } function removeOverlay(){ var div = document.getElementById('overlay'); setTimeout(function(){ div.parentNode.removeChild(div) } ,500); } function createOverlay() { var div = document.createElement('div'); div.id = 'overlay'; div.setAttribute("display", "none"); var content = document.createElement('div'); content.id = 'overlay_content'; content.innerHTML = 'Close

Website Cookie Information

Accepting our cookies will not give you more adverts or pop-ups. It will simply hide the Cookie Directive notification that appears on all of our pages.

A cookie is a small data text file, which a Web site stores on your computer\'s hard drive (if your Web browser permits). They are widely used in order to make websites work, or work more efficiently, as well as to provide information to the owners of the site.

Cookies are used by websites to save user preferences between visits.

Types of Cookies

Category 1 - Strictly Necessary Cookies

Category 2 - Performance Cookies

Category 3 - Functionality Cookies

Category 4 - Targeting or Advertising Cookies

Session cookies expire when you close your browser. Persistent cookies have a lifetime set by the website and will retain information that can be used when you reopen a website in the future.

1st Party Cookies are set by the website you are actually visiting. 3rd Party Cookies are set from content displayed on the website from other websites. This can be from advertising or sharing tools such as Facebook, Twitter or Google+.

Cookies Used on this Website

Cookie Name Cat Party Type Lifetime Description
PHPSESSID 1 1st Session --- Used for Website Operation
__utma 2 1st Persistent 730 Days Used for Google Analytics
__utmb 2 1st Persistent 30 Minutes Used for Google Analytics
__utmc 2 1st Session --- Used for Google Analytics
__utmz 2 1st Persistent 182 Days Used for Google Analytics
cookieDirective 3 1st Persistent 365 Days Used for Directive Notification
test_cookie 4 3rd Persistent 15 Minutes Doubleclick Advertising
id 4 3rd Persistent 730 Days Doubleclick Advertising
_drt_ 4 3rd Persistent 730 Days Doubleclick Advertising

Third Party Cookie Options

We supply advertising for 3rd parties and these 3rd parties may store a cookie on your browsing device.

Third party vendors, including Google, use cookies to serve ads based on a user\'s prior visits to this website.

Google\'s use of the DART cookie enables it and its partners to serve ads to you based on your visit to this site and other sites on the Internet.

Users may opt out of the use of the DART cookie by visiting the advertising opt-out page. (Alternatively users can opt out of a third-party vendor\'s use of cookies by visiting the Network Advertising Initiative opt-out page).

Most web browsers allow some control of most cookies through the browser settings. To find out more about cookies, including how to see what cookies have been set and how to manage and delete them, visit: .

To opt out of being tracked by Google Analytics across all websites visit: http://tools.google.com/dlpage/gaoptout.


Further Reading

Information about cookies

Useful information about cookies can be found at:

Internet Advertising Bureau

A guide to behavioural advertising and online privacy has been produced by the internet advertising industry which can be found at:
http://www.youronlinechoices.eu

International Chamber of Commerce United Kingdom

Information on the ICC (UK) UK cookie guide can be found on the ICC website:
http://www.international-chamber.co.uk

'; if (document.body.firstChild){ document.body.insertBefore(content, document.body.firstChild); document.body.insertBefore(div, document.body.firstChild); } else { document.body.appendChild(div); document.body.appendChild(content); } fade('overlay_content'); removeDiv('cookieDirective'); } function createDirective() { var cd_check = 1; if(cd_check <= 6){ var div = document.createElement('div'); div.id = 'cookieDirective'; div.setAttribute("onmouseover", "clearTimeout(t);"); div.setAttribute("onmouseout", "startTimer();"); div.innerHTML = '

EU Website Cookie Directive

In accordance with EU law, we have to inform you that this website uses cookies. By using our website, you agree that we can place cookies on your device. You may delete and block all cookies from this site, but parts of the site will not work.

Click \'Cookie Information\' for full details.

'; document.body.appendChild(div); startTimer(); fade('cookieDirective'); } } function startTimer(){ t=setTimeout("removeDiv('cookieDirective')",8000); } function loadcss(){ var fileref=document.createElement('link'); fileref.setAttribute('rel', 'stylesheet'); fileref.setAttribute('type', 'text/css'); fileref.setAttribute('href', 'https://craftyblogs.co.uk/cookieDirective/cookieDirective.css'); document.getElementsByTagName('head')[0].appendChild(fileref); } function cdReadCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for(var i=0;i < ca.length;i++) { var c = ca[i]; while (c.charAt(0)==' ') c = c.substring(1,c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); } return null; } function cdCreateCookie(name,value,days) { if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); } else var expires = ""; document.cookie = name+"="+value+expires+"; path=/"; } function setCookie(){ cdCreateCookie('cookieDirective',1,365); } if(!cdReadCookie('cookieDirective')) { loadcss(); setTimeout("createDirective()",1000); }