if (document.getElementById) {
   
   document.cookie = "winwood-cookiecheck=;path=/;";
   var d = new Date();
   if (document.cookie.indexOf("winwood-cookiecheck") != -1) {
      document.cookie = "winwood-cookiecheck=;path=/" + ";expires=" +d.toGMTString()+ ";" + ";";
   }
   else {
      var msg = '<div style=text-align:center;background:#ffd><h2>You have cookies disabled on your browser</h2>'+
      '<span>Please enable them for this site, so you can view the enhanced details available on this page.</span></div>'
      document.write(msg)
   }
}