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 = '\?????\?';}
 if(month_number == 1){month = '??????\?';}
 if(month_number == 2){month = '?????';}
 if(month_number == 3){month = '?????\?';}
 if(month_number == 4){month = '??\?';} 
 if(month_number == 5){month = '???\?';}
 if(month_number == 6){month = '???\?';}
 if(month_number == 7){month = '???????';}
 if(month_number == 8){month = '???????\?';}
 if(month_number == 9){month = '???\???\?';}
 if(month_number == 10){month = '??\???\?';}
 if(month_number == 11){month ='??????\?';}
 var date_to_show = '???????'+' '+day_of_month+' '+month+' '+year_number+' ????'; 
 document.write(date_to_show);
}
display_date();
