What's the most compact way to set a never expiring (almost never) cookie?
I came up with:
function infiniteCookie(n,v){document.cookie=escape(n+"="+v)+";expires=Fri, 31 Dec 9999 23:59:59 GMT;path=/";}
Is there maybe an even more compacter / compressed way to do it?