// JavaScript Document
var now = new Date();

var yr = now.getYear();


var mName = now.getMonth() + 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="09";

if(mName==10) Month="10";

if(mName==11) Month="11";

if(mName==12) Month="12";

if (yr<2000) yr=yr+1900;
// String to display current date.

   var todaysDate =(" "
       + dayNr
       + "."
       + Month
       + "."
       + yr
       + "<BR>");

// Write date to page.

document.open();

document.write('<font color="#AEC8E4">' + todaysDate + '</font>');