// JavaScript Document

var dDay = new Date()
var nHours = dDay.getHours()
if ((nHours <12 ) && (nHours >=6)){
document.write("Goedemorgen,") }
if ((nHours >=12) && (nHours <18)) {
document.write("Goedemiddag,") }
if ((nHours >=18) && (nHours <24)) {
document.write("Goedenavond,") }
if ((nHours >=0) && (nHours <6)){
document.write("Goedenacht,") }

