<!--
var TodaysDate = new Date( )
    var Hours = TodaysDate.getHours( )
    if (Hours < 12 ) {
        document.write("<strong>Good morning</strong>")
        }
    else {
        if (Hours < 18) {
            document.write("<strong>Good afternoon</strong>")
            }
        else {
            document.write("<strong>Good evening</strong>")
        }    
    }
//-->