// JavaScript Document


var date = new Date();
var weekDay = date.getDay();
var day = date.getDate();
var month = date.getMonth()+1;
var year = date.getYear();

var actuDay="";
switch(weekDay){
  case 0: actuDay = "Sonntag"; break;
  case 1: actuDay = "Montag"; break;
  case 2: actuDay = "Dienstag"; break;
  case 3: actuDay = "Mittwoch"; break;
  case 4: actuDay = "Donnerstag"; break;
  case 5: actuDay = "Freitag"; break;
  case 6: actuDay = "Samstag"; break;
      
}

for (var i=0; i < 68 ; i++)
  document.write("&nbsp;");
  
document.write(actuDay+", "+day+"."+month+"."+year);




