<!--

function timeproc()
{

document.write("Good ");
timeString = new Array(3)
timeString[0] = "Morning"
timeString[1] = "Afternoon"
timeString[2] = "Evening"

d = new Date()
thisHour = d.getHours()

if (thisHour == 0)
{
	document.write(timeString[0]);
}
if (thisHour == 1)
{
	document.write(timeString[0]);
}
if (thisHour == 2)
{
	document.write(timeString[0]);
}
if (thisHour == 3)
{
	document.write(timeString[0]);
}
if (thisHour == 4)
{
	document.write(timeString[0]);
}
if (thisHour == 5)
{
	document.write(timeString[0]);
}
if (thisHour == 6)
{
	document.write(timeString[0]);
}
if (thisHour == 7)
{
	document.write(timeString[0]);
}	
if (thisHour == 8)
{
	document.write(timeString[0]);
}
if (thisHour == 9)
{
	document.write(timeString[0]);
}
if (thisHour == 10)
{	document.write(timeString[0]);
	
}
if (thisHour == 11)
{
	document.write(timeString[0]);
}
if (thisHour == 12)
{
	document.write(timeString[1]);
}
if (thisHour == 13)
{
	document.write(timeString[1]);
}
if (thisHour == 14)
{
	document.write(timeString[1]);
}
if (thisHour == 15)
{
	document.write(timeString[1]);
}
if (thisHour == 16)
{
	document.write(timeString[1]);
}
if (thisHour == 17)
{
	document.write(timeString[1]);
}
if (thisHour == 18)
{
	document.write(timeString[2]);
}
if (thisHour == 19)
{
	document.write(timeString[2]);
}
if (thisHour == 20)
{
	document.write(timeString[2]);
}
if (thisHour == 21)
{
	document.write(timeString[2]);
}
if (thisHour == 22)
{
	document.write(timeString[2]);
}
if (thisHour == 23)
{
	document.write(timeString[2]);
}

document.write(" and ");

return;
}

// -->



