function rdate(){
my_date = new Date();	
var m
if (my_date.getMonth()==0) m="Января";
if (my_date.getMonth()==1) m="Февраля";
if (my_date.getMonth()==2) m="Марта";
if (my_date.getMonth()==3) m="Апреля";
if (my_date.getMonth()==4) m="Мая";
if (my_date.getMonth()==5) m="Июня";
if (my_date.getMonth()==6) m="Июля";
if (my_date.getMonth()==7) m="Августа";
if (my_date.getMonth()==8) m="Сентября";
if (my_date.getMonth()==9) m="Октября";
if (my_date.getMonth()==10) m="Ноября";
if (my_date.getMonth()==11) m="Декабря";

year = my_date.getYear();
if (year<2000) {year+=1900;}
var s=my_date.getDate()+' '+unescape(m)+' '+year;
return s;
}
