
//CN Insert Greeting Ver 1.0.2 - CEA CrystalNet
CN_Now = new Date();
localtime = CN_Now.toString();
CN_Hours = CN_Now.getHours();
if (CN_Hours < 6) {
	document.write("Hallo und guten Morgen!");
} else {
	if (CN_Hours >= 12 && CN_Hours < 18)  {
			document.write("Hallo und einen sch&ouml;nen Nachmittag!");
	} else {
		if (CN_Hours >= 18) {
			document.write("Hallo und guten Abend!");
			} else {
  			document.write("Hallo und einen sch&ouml;nen Tag!");
		}
	}
}
