var Months = new Array();
var Days = new Array();
Months.push('янв','фев','мар','апр','май','июн','июл','авг','сен','окт','ноя','дек');
Days.push('вс','пн','вт','ср','чт','пт','сб');
function getFormattedDate() {
	DT = new Date();
	_minutes=DT.getMinutes();
	if(_minutes<10) { _minutes = '0'+_minutes; }
	str = DT.getHours() + ':' + _minutes + ' ' + Days[DT.getDay()]+' '+DT.getDate()+' '+ Months[DT.getMonth()] +' '+ DT.getFullYear();
	document.getElementById('date_cp1251').innerHTML=str;
}
function startOutputDate() {
	setInterval('getFormattedDate()',1000); 
}

