function popup() {
            var today = new Date();
 	  var expire = new Date();
	  expire.setTime(today.getTime() + 3600000*24*1);
	  
	  if (get_cookie('olpopup')==''){
		  adwindow = window.open("", "popup", "width=720,height=300");
		  adwindow.blur();
		  window.focus();
		  adwindow.location = "https://secure.palmcoastd.com/ows-img/OLF/popup0808/olf_lb.html";
		  
		  document.cookie = "olpopup=yes;expires="+expire.toGMTString();
	  }
}
 function get_cookie(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
	offset = document.cookie.indexOf(search)
	if (offset != -1) { // if cookie exists
	  offset += search.length
	  // set index of beginning of value
	  end = document.cookie.indexOf(";", offset);
	  // set index of end of cookie value
	  if (end == -1)
		 end = document.cookie.length;
	  returnvalue=unescape(document.cookie.substring(offset, end))
	}
   }
  return returnvalue;
}