// set expiration to 1 day var expiration = new Date(); expiration.setTime(expiration.getTime() + 43200000); function getCookie(name){ var cname = name + "="; var dc = document.cookie; if (dc.length != 0) { begin = dc.indexOf(cname); if (begin != -1) { begin += cname.length; end = dc.indexOf(";", begin); if (end == -1) end = dc.length; return unescape(dc.substring(begin, end)); } } return null; } function setCookie(name, value, expires) { document.cookie = name + "=" + escape(value) + ((expires == null) ? "" : "; expires=" + expires.toGMTString()) + "; path=/;"; } var visitsCookie = getCookie('Visits'); var alertpop = "no"; if (visitsCookie == null){ visitsCookie=visitsCookie+1; setCookie('Visits',visitsCookie, expiration); alertpop = "yes"; } function hots(){ if (alertpop == "yes"){ window.open("http://www.thefuncoolstuff.com/hotoffer.php"); }else{ } }