var cookieEnabled = false;
if (navigator.cookieEnabled) {
  cookiesok = true;
}
else {
   if (typeof document.cookie == "string") {
       if (document.cookie.length == 0) {
          document.cookie = "test";
          cookiesok = (document.cookie == "test");
          document.cookie = "";
       }
       else {
        cookiesok = true;
       }
   }
}
if (cookiesok == true) {
   document.write("<font face='verdana,arial,helvetica' color='darkslateblue' size='2'> Yes</font>");
}
else {
  document.write("<font face='verdana,arial,helvetica' color='red' size='2'> No</font>");
}  
