var now = new Date();
var yr = now.getFullYear();
var mName = now.getMonth() + 1;
var dName = now.getDay() + 1;
var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate();
if(mName==1) Month="01";
if(mName==2) Month="02";
if(mName==3) Month="03";
if(mName==4) Month="04";
if(mName==5) Month="05";
if(mName==6) Month="06";
if(mName==7) Month="07";
if(mName==8) Month="08";
if(mName==9) Month="08";
if(mName==10) Month="10";
if(mName==11) Month="11";
if(mName==12) Month="12";

var todaysDate =(" "
+ dayNr
+ "."
+ Month
+ "."
+ yr
+ "<BR>");
document.open();
document.write("<FONT COLOR=OOOOOO SIZE=1>"+todaysDate+"</FONT>");