<!-- begin JavaScript/
 
// JavaScript to calculate visits using cookies.
 
// Copyright (c) Kenneth Norton, T3 (ken@t3.com)
 
//
 
// Permission is granted to freely use this script
 
// provided credit is given to the authors above and below.
 
//
 
// Public Domain Cookie Functions 
 
// Written by:  Bill Dortch, hIdaho Design (bdortch@netw.com)
 
//
 
function getCookieVal (offset) { 
 
 var endstr = document.cookie.indexOf (";", offset); 
 
 if (endstr == -1)
 
    endstr = document.cookie.length;
 
 return unescape(document.cookie.substring(offset, endstr));
 
}
 
function GetCookie (name) {
 
var arg = name + "="; 
 
var alen = arg.length; 
 
var clen = document.cookie.length; 
 
var i = 0; 
 
while (i < clen) {
 
  var j = i + alen;
 
  if (document.cookie.substring(i, j) == arg)
 
  return getCookieVal (j);
 
  i = document.cookie.indexOf(" ", i) + 1;
 
    if (i == 0) break;
 
 }
 
 return null;
 
}
 
function SetCookie (name, value) {
 
  var argv = SetCookie.arguments;
 
  var argc = SetCookie.arguments.length;
 
  var expires = (2 < argc) ? argv[2] : null;
 
  var path = (3 < argc) ? argv[3] : null;
 
  var domain = (4 < argc) ? argv[4] : null;
 
  var secure = (5 < argc) ? argv[5] : false;
 
  document.cookie = name + "=" + escape (value) + 
 
   ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
 
   ((path == null) ? "" : ("; path=" + path)) + 
 
   ((domain == null) ? "" : ("; domain=" + domain)) + 
 
   ((secure == true) ? "; secure" : "");
 
}
 
var expdate = new Date();
 
var visits;
 
// Set expiration date to a year from now.
 
expdate.setTime(expdate.getTime() +  (24 * 60 * 60 * 1000 * 365));
 
 if(!(visits = GetCookie("HHF_VIS_1"))) visits = 0;
 
visits++;
 
SetCookie("HHF_VIS_1", visits, expdate, "", null, false);
 
 
 
document.write("<b>This is visit #" + visits + " for you... ");
 
  if(visits == 1) document.write("<br>Our hope is, you'll find our site inspirational and shall return often.. <br> We welcome you and do hope you'll enjoy your visit to our site!");
 
  if((1 < visits) && (visits <= 5)) document.write("<br>We feel so honored...you actually came back.. Wow.. <br> Thank you!");
 
  if((5 < visits) && (visits <= 9)) document.write("<br>We take all these visits as a compliment you know! Thanks so much! ");
 
  if(visits == 10) document.write("<br> Wow!  You've been here 10 times now.......Have you signed our guestbook yet or adopted one of our TearDrop Roses?");
 
  if((10 < visits) && (visits <= 24)) document.write("<br>Flattered...  Really......and I mean FLATTERED");
 
  if(visits == 25) document.write("<br>My gosh!  This is your 25th visit to My Safe Haven!  If you haven't signed our Friends and Visitors Guestbook yet......well, come on.. don't be shy! Go ahead and sign it!");
 
  if(25 < visits) document.write("<br>Thanks so much for returning!");
 
// end JavaScript -->
 
<!--
 
     var now = new Date();
 
     var hours = now.getHours();
 
     var minutes = now.getMinutes();
 
     var timeValue = "" + ((hours >12) ? hours -12 :(hours ==0) ? hours +12 :hours)
 
     timeValue += ((minutes < 10) ? ":0" : ":") + minutes
 
     timeValue += (hours >= 12) ? " PM  " : " AM  "
 
     timeValue += (hours >=5 & hours <12) ? "<br>":(hours >=12 & hours <18) ? "<br> ":(hours >=18) ? "<br> ":"<br> "
 
     document.write( "<br> " );
 
// -->