// This script sets a cookie where possible to ensure that users only see the results
// of a contest if they've actually carried one out on the index page.  Out of date
// contests are ignored if the nocontest cookie is set.

if (navigator.cookieEnabled || typeof(navigator.cookieEnabled) != "undefined") {
    document.cookie = "nocontest=1";
}
