function outdates(lng) {
  var months=new Array(13);
  if (lng=="ukr"){
    months[1]="Січня";   months[2]="Лютого";  months[3]="Березня";    months[4]="Квітня";
    months[5]="Травня";  months[6]="Червня";  months[7]="Липня";      months[8]="Серпня";
    months[9]="Вересня"; months[10]="Жовтня"; months[11]="Листопада"; months[12]="Грудня";
  }
  if (lng=="rus"){
    months[1]="Января";   months[2]="Февраля";  months[3]="Марта";   months[4]="Апреля";
    months[5]="Мая";      months[6]="Июня";     months[7]="Июля";    months[8]="Августа";
    months[9]="Сентября"; months[10]="Октября"; months[11]="Ноября"; months[12]="Декабря";
  }
  if (lng=="eng"){
    months[1]="January";   months[2]="February"; months[3]="March";     months[4]="April";
    months[5]="May";       months[6]="June";     months[7]="July";      months[8]="August";
    months[9]="September"; months[10]="October"; months[11]="November"; months[12]="December";
  }
  var time=new Date(); var date=time.getDate(); var year=time.getYear();
  if (year < 2000) year = year + 1900;
  var nmonth=time.getMonth()+1
  if (lng=="ukr") document.write(date + " " + months[nmonth] + ", " + year + " рік");
  if (lng=="rus") document.write(date + " " + months[nmonth] + ", " + year + " год");
  if (lng=="eng") document.write(months[nmonth] + " " + date + ", " + year + " year");
}
