current_date = new Date();
	monthNow = current_date.getMonth();
	if (monthNow == 0)
	{
	txtMonth = "января";
	}
	if (monthNow == 1)
	{
	txtMonth = "февраля";
	}
	if (monthNow == 2)
	{
	txtMonth = "марта";
	}
	if (monthNow == 3)
	{
	txtMonth = "апреля";
	}
	if (monthNow == 4)
	{
	txtMonth = "мая";
	}
	if (monthNow == 5)
	{
	txtMonth = "июня";
	}
	if (monthNow == 6)
	{
	txtMonth = "июля";
	}
	if (monthNow == 7)
	{
	txtMonth = "августа";
	}
	if (monthNow == 8)
	{
	txtMonth = "сентября";
	}
	if (monthNow == 9)
	{
	txtMonth = "октября";
	}
	if (monthNow == 10)
	{
	txtMonth = "ноября";
	}
	if (monthNow == 11)
	{
	txtMonth = "декабря";
	}
	document.write("Сегодня: " + current_date.getDate() +
  " " + txtMonth + " " + current_date.getFullYear() + " года.");