/*
Cookie Example
© System
http://qdl.scs-inc.us/?top=5498
*/
function CookieExample() {
var expdate = new Date ();
FixCookieDate (expdate);
expdate.setTime (expdate.getTime() + 3 * (24 * 60 * 60)); // 3 days
var ref = "";
if (ref) { SetCookie ("ref", ref, expdate, "/", ".domain.com"); }
}
|