
function display_date(){

 date = new Date();

 var day_of_month = date.getDate();

 var month_number = date.getMonth();
 
 var year = date.getFullYear();

 var month = '';

 if(month_number == 0){month = '01';}

 if(month_number == 1){month = '02';}

 if(month_number == 2){month = '03';}

 if(month_number == 3){month = '04';}

 if(month_number == 4){month = '05';} 

 if(month_number == 5){month = '06';}

 if(month_number == 6){month = '07';}

 if(month_number == 7){month = '08';}

 if(month_number == 8){month = '09';}

 if(month_number == 9){month = '10';}

 if(month_number == 10){month = '11';}

 if(month_number == 11){month ='12';}

// var date_to_show =  day_of_month + '.' + month + '.' + year; 
 var date_to_show =  '&nbsp;&nbsp;&nbsp;[ ' + day_of_month + '.' + month + ' ]'; 
 document.write('<font style="font-family: Verdana, Arial, Helvetica, sans-serif;font-size: 11px;color: #FF0000;font-weight:bold;vertical-align: middle;">'+ date_to_show+'</font>');

}

display_date();