
function ftime() {  

var time=new Date();
var months=time.getMonth() + 1;
var date=time.getDate();
var year=time.getYear();


//if (months < 10){months = "0"+months;}
if (date < 10){date = "0"+date;}
year=year-2000;
if (year < 10){year = "0"+year;}

var hours=time.getHours();
var minutes=time.getMinutes();

if (hours < 10){hours = "0"+hours;}
if (minutes < 10){minutes = "0"+minutes;}


var mes = new Array("", "января", "февраля", "марта", "апреля", "мая", "июня", "июля", "августа", "сентября", "октября", "ноября", "декабря");
	

document.getElementById("d3").innerHTML = date;
document.getElementById("d4").innerHTML = mes[months];
document.getElementById("d5").innerHTML = hours + ":" + minutes;

setTimeout('ftime()',500);


}
