inc_lastvisit_js =
'<script type = "text/javascript">\n\n/******************'
+ '*****************************\n* Display time of last vi'
+ 'sit script- by JavaScriptKit.com\n* This notice MUST sta'
+ 'y intact for use\n* Visit JavaScript Kit at http://www.j'
+ 'avascriptkit.com/ for this script and more\n************'
+ '***********************************/\n\nvar days = 730; '
+ '// days until cookie expires = 2 years.\nvar lastvisit=n'
+ 'ew Object();\nvar firstvisitmsg="Your first visit to thi'
+ 's page."; \nlastvisit.subsequentvisitmsg="Last Visited o'
+ 'n <b>[displaydate]</b>";\n\nlastvisit.getCookie=function'
+ '(Name){ \nvar re=new RegExp(Name+"=[^;]+", "i"); \nif (d'
+ 'ocument.cookie.match(re)) \nreturn document.cookie.match'
+ '(re)[0].split("=")[1];\nreturn\'\'; \n}\n\nlastvisit.setCo'
+ 'okie=function(name, value, days){ \nvar expireDate = new'
+ ' Date();\n\nvar expstring=expireDate.setDate(expireDate.'
+ 'getDate()+parseInt(days));\ndocument.cookie = name+"="+v'
+ 'alue+"; expires="+expireDate.toGMTString()+"; path=/";\n'
+ '}\n\nlastvisit.showmessage = function() {\nvar wh = new '
+ 'Date();\nif (lastvisit.getCookie("visitc") == "") { \nla'
+ 'stvisit.setCookie("visitc", wh, days); \ndocument.write('
+ 'firstvisitmsg);\n}\n\nelse {\nvar lv = lastvisit.getCook'
+ 'ie("visitc");\nvar lvp = Date.parse(lv);\nvar now = new '
+ 'Date();\nnow.setTime(lvp);\nvar day = new Array("Sun", "'
+ 'Mon", "Tues", "Wed", "Thur", "Fri", "Sat");\nvar month ='
+ ' new Array ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "J'
+ 'ul", "Aug", "Sep", "Oct", "Nov", "Dec");\nvar dd = now.g'
+ 'etDate();\nvar dy = now.getDay();\ndy = day[dy];\nvar mn'
+ ' = now.getMonth();\nmn = month[mn];\nyy = now.getFullYea'
+ 'r();\nvar hh = now.getHours();\nvar ampm = "AM";\nif (hh'
+ ' >= 12) {ampm = "PM"}\nif (hh >12){hh = hh - 12};\nif (h'
+ 'h == 0) {hh = 12}\nif (hh < 10) {hh = "0" + hh};\nvar mi'
+ 'ns = now.getMinutes();\nif (mins < 10) {mins = "0"+ mins'
+ '}\nvar secs = now.getSeconds();\nif (secs < 10) {secs = '
+ '"0" + secs}\nvar dispDate = dy + ", " + mn + " " + dd + '
+ '", " + yy + " " + hh + ":" + mins + ":" + secs + " " + a'
+ 'mpm\ndocument.write(lastvisit.subsequentvisitmsg. replace'
+ '("\\[displaydate\\]", dispDate))\n}\n\nlastvisit.setCookie'
+ '("visitc", wh, days);\n\n}\n\nlastvisit.showmessage();\n'
+ '\n</script>';

// end_var_declaration
document.write(inc_lastvisit_js); 