<!--
var enabled = 0; today = new Date();
var month; var week; var date;

if(today.getMonth()==0) month = "01";
if(today.getMonth()==1) month = "02";
if(today.getMonth()==2) month = "03";
if(today.getMonth()==3) month = "04";
if(today.getMonth()==4) month = "05";
if(today.getMonth()==5) month = "06";
if(today.getMonth()==6) month = "07";
if(today.getMonth()==7) month = "08";
if(today.getMonth()==8) month = "09";
if(today.getMonth()==9) month = "10";
if(today.getMonth()==10) month = "11";
if(today.getMonth()==11) month = "12";

date = "" + month + " . " + today.getDate() + " . " + today.getYear()  +"";

document.write(date);
// -->