<!-- hide this script from non-javascript-enabled browsers
 var Today = new Date();
 WocheArray = new Array("sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday");
 var Month = Today.getMonth(); Month++;
 var TodayString = WocheArray[Today.getDay()] + ", " + Today.getDate() + "." + Month + "." + "2002";
 document.writeln(TodayString);
// stop hiding -->

