<!-- Begin
function greeting() {
var today = new Date();
var hrs = today.getHours();
document.write("<FONT SIZE=+2>");
document.write("<FONT FACE='Comic Sans MS, Arial, Times New Roman'>");
document.write("Good ");   
if (hrs < 6)
document.write("(Early) Morning");
else if (hrs < 12)
document.write("Morning");
else if (hrs <= 18)
document.write("Afternoon");
else
document.write("Evening");
document.write("! ");
}
greeting();
document.write("<FONT SIZE=+2>");
document.write("Welcome to Dong-Yun's Home Page.");
document.writeln("");
document.write("</FONT>");
document.write("</FONT>")
// End -->

