    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!")
		
    document.write("<br><br>Welcome to the world of JScript.  ")
    document.write("<br>Just in case you were wondering, it's " + d + ".")









