var days = 730; // days until cookie expires = 2 years. var lastvisit=new Object(); var firstvisitmsg="•Hey! Đây là lần đầu tiên bạn đến với ZingFC, hãy ủng hộ và giới thiệu tới bạn bè trang này nhé!"; lastvisit.subsequentvisitmsg="•Lần truy cập cuối: [displaydate]"; lastvisit.getCookie=function(Name){ var re=new RegExp(Name+"=[^;]+", "i"); if (document.cookie.match(re)) return document.cookie.match(re)[0].split("=")[1]; return''; } lastvisit.setCookie=function(name, value, days){ var expireDate = new Date(); var expstring=expireDate.setDate(expireDate.getDate()+parseInt(days)); document.cookie = name+"="+value+"; expires="+expireDate.toGMTString()+"; path=/"; } lastvisit.showmessage = function() { var wh = new Date(); if (lastvisit.getCookie("visitc") == "") { lastvisit.setCookie("visitc", wh, days); document.write(firstvisitmsg); } else { var lv = lastvisit.getCookie("visitc"); var lvp = Date.parse(lv); var now = new Date(); now.setTime(lvp); var day = new Array("CN", "Thứ 2", "Thứ 3", "Thứ 4", "Thứ 5", "Thứ 6", "Thứ 7"); var month = new Array ("01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"); var dd = now.getDate(); var dy = now.getDay(); dy = day[dy]; var mn = now.getMonth(); mn = month[mn]; yy = now.getFullYear(); var hh = now.getHours(); var ampm = "AM"; if (hh >= 12) {ampm = "PM"} if (hh >12){hh = hh - 12}; if (hh == 0) {hh = 12} if (hh < 10) {hh = "0" + hh}; var mins = now.getMinutes(); if (mins < 10) {mins = "0"+ mins} var secs = now.getSeconds(); if (secs < 10) {secs = "0" + secs} var dispDate = dy + ", " + dd + "/" + mn + "/" + yy + ", " + hh + ":" + mins + ":" + secs + " " + ampm document.write(lastvisit.subsequentvisitmsg.replace("\[displaydate\]", dispDate)) } lastvisit.setCookie("visitc", wh, days); } lastvisit.showmessage();