﻿now = new Date(),hour = now.getHours()
 if (hour < 12){document.write("Good morning! ")
} 

else if (hour < 14){
document.write("Good noon! ")
document.write(" ");
}

else if (hour < 17){document.write("Good afternoon! ")
document.write(" ");
}

else if (hour < 19){
document.write("Good evening! ")
document.write(" ");
}


var enabled = 0; today = new Date();

var day; 
var date;

if(today.getDay()==0) day = " Sun"
if(today.getDay()==1) day = " Mon"

if(today.getDay()==2) day = " Tue"

if(today.getDay()==3) day = " Wed"
if(today.getDay()==4) day = " Thu"

if(today.getDay()==5) day = " Fri"

if(today.getDay()==6) day = " Sat"
document.fgColor = "000000";

date =(today.getYear()>"99"?+today.getYear():"19"+today.getYear()) + "." + (today.getMonth() + 1 
) + "." + today.getDate() +" "+ day +"";
document.write("<FONT class=time>");
document.write(" ");
document.write(date);
document.write("</FONT>");
