<!--
var now = new Date();
var yr = now.getYear() + 1900;
var mName = now.getMonth() + 1;
var dayNr = ((now.getDate()<10) ? "" : "")+ now.getDate();
										
if(mName==1) Month="1.";
if(mName==2) Month="2.";
if(mName==3) Month="3.";
if(mName==4) Month="4.";
if(mName==5) Month="5.";
if(mName==6) Month="6.";
if(mName==7) Month="7.";
if(mName==8) Month="8.";
if(mName==9) Month="9.";
if(mName==10) Month="10.";
if(mName==11) Month="11.";
if(mName==12) Month="12.";
											
										
var todaysDate =( + dayNr + ". " + Month + " " + yr);
document.open();
document.write("<font color=white size=12px>"+todaysDate+"</font>");
// -->
