<!--
//Get Date
var months=new Array(13);
months[1]="января";
months[2]="февраля";
months[3]="марта";
months[4]="апреля";
months[5]="мая";
months[6]="июня";
months[7]="июля";
months[8]="августа";
months[9]="сентября";
months[10]="октября";
months[11]="ноября";
months[12]="декабря";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000) 
year = year + 1900; 

//Get Time
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes()
var timeValue = "" + ((hours >12) ? hours -12 :hours)
if (timeValue == "0") timeValue = 12;
timeValue += ((minutes < 10) ? ":0" : ":") + minutes
timeValue += (hours >= 12) ? " pm" : " am"

//Get Day
var days=new Array(7);
days[0]="Воскресенье";
days[1]="Понедельник";
days[2]="Вторник";
days[3]="Среда";
days[4]="Четверг";
days[5]="Пятница";
days[6]="Суббота";
var lday=days[time.getDay()];

//-->


<!--
function printnum()
{
if (location.search) {
var stext = location.search.substring(1);
if (stext == 'All') {imgprint=imgall+1}
if (stext == 'Min') {imgprint=3}
}
}
// -->