now = new Date();
var date = '';
day = now.getDate(); date += day < 10 ? ('0'+day) : day;
date += '.';
month = now.getMonth()+1; date += month < 10 ? ('0'+month) : month;
date += '.';
date += now.getYear();
date += ' ';
hours = now.getHours(); date += hours < 10 ? ('0'+hours) : hours;
date += ':';
minutes = now.getMinutes(); date += minutes < 10 ? ('0'+minutes) : minutes;
document.write(date);

