// //4/15/2003 -- Norm Cloutier //Ensure a cookie gets planted and InSite authentication is run. function SaveCookie(cname,cvalue,cdays,cpath) { ex = new Date; ex.setTime(ex.getTime() + (cdays*86400000)); if (cpath == null) { cpath = "/" }; cpath = "; path=" + cpath; if (cdays == null) { cdays = "" } else { cdays = "; expires=" + ex.toGMTString() } document.cookie=cname + '=' + cvalue + cdays + cpath + "; domain=startribune.com"; } dd = new Date(); SaveCookie('seentoday',dd,.9,'/');