// JavaScript Document

    var d = new Date()
    var h = d.getHours()

    if (h < 12)
        document.write("Good Morning")
    else
        if (h < 17)
            document.write("Good Afternoon")
        else
            document.write("Good Evening") 
