<!--
function PageDate()
{
	currentDate = new Date()
	with (currentDate)
          {
		day=getDay()
		month=getMonth()+1
		this.document.write(+getDate()+' . '+month+' . '+getFullYear()+'  ')
	}
	if (day==1){document.write(' Понедельник')}
	if (day==2){document.write(' Вторник')}
	if (day==3){document.write(' Среда')}
	if (day==4){document.write(' Четверг')}
	if (day==5){document.write(' Пятница')}
	if (day==6){document.write(' Суббота')}
	if (day==0){document.write(' Воскресенье')}
	document.write('<br>')
}

PageDate()

// -->