var MonthName = new Array('1','2','3','4','5','6','7','8','9','10','11','12');var theDate = new Date();document.write("<span style='font-family:arial black,impact,times,times roman,tahoma,verdana; font-size:43px;color:#505860;letter-spacing:-2px;z-index:4'><b>"+MonthName[theDate.getMonth()] + '.' +theDate.getDate() + '.' +(theDate.getYear() < 1000 ? theDate.getYear() + 1900 : theDate.getYear()) + "</b><br /></span>");