document.write("<center><font size=+1>");
d = new Date();
hour = d.getHours();
if(hour < 5)
{
document.write("Doing a little late-night surfing? Welcome to my site");
}
else
if(hour < 6)
{
document.write("Up early, I see! Do you have your coffee? Welcome to my site");
}
else
if(hour < 12)
{
document.write("Good Morning! Welcome to my site");
}
else
if(hour < 18)
{
document.write("Good Afternoon! Welcome to my site");
}
else
{
document.write("Good Evening! Welcome to my site");
}
document.write("</font></center><p></p>");


function getTime() {
now = new Date();
y2k = new Date("Jan 15 2004 00:00:00");
days = (y2k - now) / 1000 / 60 / 60 / 24;
daysRound = Math.floor(days);
hours = (y2k - now) / 1000 / 60 / 60 - (24 * daysRound);
hoursRound = Math.floor(hours);
minutes = (y2k - now) / 1000 /60 - (24 * 60 * daysRound) - (60 * hoursRound);
minutesRound = Math.floor(minutes);
seconds = (y2k - now) / 1000 - (24 * 60 * 60 * daysRound) - (60 * 60 * hoursRound) - (60 * minutesRound);
secondsRound = Math.round(seconds);
sec = (secondsRound == 1) ? " second." : " seconds.";
min = (minutesRound == 1) ? " minute" : " minutes, ";
hr = (hoursRound == 1) ? " hour" : " hours, ";
dy = (daysRound == 1)  ? " day" : " days, "
document.timeForm.input1.value = "Time remaining: " + daysRound  + dy + hoursRound + hr +  minutesRound + min + secondsRound + sec;
newtime = window.setTimeout("getTime();", 1000);
}

function SetCookie(name)
{
cookidx++
today = new Date ()
expdate = new Date ()
expdate.setTime(expdate.getTime() + (24 * 60 * 60 * 1000 * 365))
expdate=expdate.toGMTString()
document.cookie="lastvisit="+escape(today)+"_"+name+"#"+cookidx+"; expires="+expdate+";"
}