/* author: Bernhard Garthe */
/* Creation date: 14.05.03 */

dayName = new Array ("So","Mo","Di","Mi","Do","Fr","Sa")
monName = new Array ("Jan","Feb","März","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez")

now = new Date

function writeday (){
/*  document.write("Heute ist: <br>" + dayName[now.getDay()] + ", der " + now.getDate() + ". " + monName[now.getMonth()]) */
  document.write("" + dayName[now.getDay()] +" " + now.getDate()+ ". " + monName[now.getMonth()] + ". " + now.getYear())
}