/*<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">*/
days = new Array(
	"Воскресенье",
	"Понедельник",
	"Вторник",
	"Среда",
	"Четверг",
	"Пятница",
	"Суббота"
);
months = new Array(
	"Января",
	"Февраля",
	"Марта",
	"Апреля",
	"Мая",
	"Июня",
	"Июля",
	"Августа",
	"Сентября",
	"Октября",
	"Ноября",
	"Декабря"
);

function drawClock() {
	var now, year, month, date, day, hours, mins, secs, str = "";
	now = new Date();
	hours = now.getHours();
	mins = now.getMinutes();
	secs = now.getSeconds();
	day = now.getDay();

	year = now.getFullYear();
	month = now.getMonth();
	date = now.getDate();

	/*str += '<span style="font-size: 200%">' + (hours < 10 ? "0" + hours : hours) + ":" +
		(mins < 10 ? "0" + mins : mins) + ":" +
		(secs < 10 ? "0" + secs : secs) + "</span>";*/
	str += days[day] + ", " + date + " " + months[month] + " " + year + " г.";
	document.write(str);
}
