var TheFontFace  = "arial, helvetica, sans-serif";
var TheFontColor = "white";
var TheFontSize  = "1";
var TheFontStyle = "normal"; 
 

var TheSeparator = ".";
var afterday = "the";
var blank = " ";
 
 
 
var ShowDay ="no";

 

var Days = new Array	(
						"Herzlich Willkommen bei lifeworld!&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;&nbsp;&nbsp;Heute ist Sonntag,",
						"Herzlich Willkommen bei lifeworld!&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;&nbsp;&nbsp;Heute ist Montag,",
						"Herzlich Willkommen bei lifeworld!&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;&nbsp;&nbsp;Heute ist Dienstag,",
						"Herzlich Willkommen bei lifeworld!&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;&nbsp;&nbsp;Heute ist Mitwoch,",
						"Herzlich Willkommen bei lifeworld!&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;&nbsp;&nbsp;Heute ist Donnerstag,",
						"Herzlich Willkommen bei lifeworld!&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;&nbsp;&nbsp;Heute ist Freitag,",
						"Herzlich Willkommen bei lifeworld!&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;&nbsp;&nbsp;Heute ist Samstag,"
						);
var TheDate = new Date();

  var TheWeekDay = TheDate.getDay();
var Day ="";
if (ShowDay == "yes"){
    Day = Days[TheWeekDay];
    Day += " der ";}

 
var TheMonth = TheDate.getMonth() +1;
if (TheMonth == 1) {TheMonth = "January";}
if (TheMonth == 2) {TheMonth = "February";}
if (TheMonth == 3) {TheMonth = "March";}
if (TheMonth == 4) {TheMonth = "April";}
if (TheMonth == 5) {TheMonth = "May";}
if (TheMonth == 6) {TheMonth = "June";}
if (TheMonth == 7) {TheMonth = "July";}
if (TheMonth == 8) {TheMonth = "August";}
if (TheMonth == 9) {TheMonth = "September";}
if (TheMonth == 10) {TheMonth = "October";}
if (TheMonth == 11) {TheMonth = "November";}
if (TheMonth == 12) {TheMonth = "December";}



 
var TheMonthDay = TheDate.getDate();
if (TheMonthDay < 10) TheMonthDay = "0" + TheMonthDay;
 
var TheYear = TheDate.getYear();
if (TheYear < 1000) TheYear += 1900;
 
var FontTagLeft  = "";
var FontTagRight = "";
 
if (TheFontStyle == "bold"){
    FontTagLeft = "<b>";
    FontTagRight ="</b>";}
    
if (TheFontStyle == "italic"){
    FontTagLeft = "<i>";
    FontTagRight ="</i>";}
    
if (TheFontStyle == "bolditalic"){
    FontTagLeft = "<b><i>"; 
    FontTagRight = "</i></b>";}    
 
var D = "";
D += "<font color='"+TheFontColor+"' face='"+TheFontFace+"' size='"+TheFontSize+"'>";
D += FontTagLeft+TheMonth+blank+TheMonthDay+TheSeparator+blank+TheYear+Day+FontTagRight;
D += "</font>";
 
document.write(D);
