function DisplayTimeOfDayGreeting(bIncludeWelcome)
{
  data = new Cookie(document, "gtregay_counter", 240);

  data.read();
  if (data.visits == null) data.visits = 0;
  data.visits++;
  data.write();

  temp_date = new Date();
  hours = temp_date.getHours();
  if (hours > 17)
    time_of_day = "evening"
  else if (hours > 11)
    time_of_day = "afternoon"
  else
    time_of_day = "morning"
  document.write("Good " + time_of_day);
  if (bIncludeWelcome)
  {
    if (data.visits > 1)
      document.write(" and welcome back! (" + data.visits + " visits)");
    else
      document.write(" and welcome to our home on the web! You're new around here, aren't you?");
  }
  else
    document.write(".");
}
