this.TheDay = new Array("воскресенье","понедельник","вторник","среда","четверг","пятница","суббота");
this.TheMonth = new Array("\январ\я","феврал\я","марта","апрел\я","ма\я","июн\я","июл\я","августа","сент\ябр\я","окт\ябр\я","но\ябр\я","декабр\я");
this.TheDate = new Date();
	this.thisDay = TheDate.getDay();
	this.thisDate = TheDate.getDate();
	this.thisMonth = TheDate.getMonth();
	this.thisYear = TheDate.getYear();

function DateInsert() {
	(this.thisYear < 1000 || this.thisYear == 101)?this.thisYear = this.thisYear + 1900:null;
	PrintDate = this.thisDate +" " + this.TheMonth[this.thisMonth] + " " + this.thisYear + " года" + ", " + this.TheDay[this.thisDay];
	document.write(PrintDate);
}



