<!--   // Array ofmonth Names
var monthNames = new Array( "Января", "Февраля", "Марта", "Апреля", "Мая", "Июня", "Июля", "Августа", "Сентября", "Октября", "Ноября", "Декабря");
var now = new Date();
thisYear = now.getYear();
if(thisYear < 1900)
{
	thisYear += 1900;
} // corrections if Y2K display problem

mPath1 = "..//..//Ural-Lab/";

document.write( "<img src=\"" + mPath1 + "Images/points1.gif\">" + "&nbsp;&nbsp;&nbsp;" + now.getDate() + " " + monthNames[now.getMonth()] + "&nbsp;" + thisYear + "&nbsp;г.&nbsp;");
// -->
