<!--
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 #<blink>" + visits + "</blink> for you. ");
  if(visits == 1) document.write("<br>You have just landed at ~Uncle Denny's Corner~<br> WELCOME, and enjoy your visit");
  if((1 < visits) && (visits <= 5)) document.write("<br>I'm honored...you actually came back!");
  if((5 < visits) && (visits <= 9)) document.write("<br>I take all these visits as a compliment you know!");
  if(visits == 10) document.write("<br>Ok!  This is visit #10 . . . have you scribbled yur name in the questbook yet?");
  if((10 < visits) && (visits <= 24)) document.write("<br>Glad you're returning . . . The slide shows and comments change frequently<br>I noticed that you are a frequent visitor so<br>Don't forget to re-visit the teardrop pages as the photos have<br>been enhanced and resized to a larger size for more detail.<br>Denny . . . July 2008");
  if(25 < visits) document.write("<br>You've been here many times my friend.<br>Don't forget to re-visit the teardrop pages as the photos have<br>been enhanced and resized larger for more detail.<br>Denny . . . July 2008");
// 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>Good Morning! Have a great day! ":(hours >=12 & hours <18) ? "<br>Good Afternoon! Hope you're having a pleasant day":(hours >=18) ? "<br>Good Evening ":"<br>Don't miss the slide show performance tonight.<br>Get your popcorn, it's about to start."
     document.write( "<br>It is now " +timeValue );

-->