function display_date()
{
 date = new Date();
 var day_of_month = date.getDate();
 var month_number = date.getMonth();
 var year_number = 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_number+''; 
 document.write(date_to_show);
}
display_date();
