
<html><head></head><body>
<script>
function setFreedomCookie(){
   days=30; // Expiration of cookie in days
   myDate = new Date();
   myDate.setTime(myDate.getTime()+(days*24*60*60*1000));
   document.cookie = 'FreedomCookie=true; expires=' + myDate.toGMTString();
}
</script>
<a href="?letmein" onclick="setFreedomCookie()">I consent to receiving cookies.</a>
</body></html>