function clockwork(){
var toShow = "";
var wDay = new Array('Воскресенье','Понедельник', 'Вторник', 'Среда', 'Четверг','Пятница', 'Суббота');
var strMonth = new Array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12');
var now = new Date();
var dow = wDay[now.getDay()];
var monthName = strMonth[now.getMonth()];
var date = now.getDate();
var time1 = now.getHours();
var min1 = now.getMinutes();

var year = now.getFullYear();
var toTypeA = dow;
var toTypeB = date + "." + monthName + "." + year;
document.write( '<font color=ffffff><b> '+toTypeA+' '+toTypeB+' ');
if (time1 < 10) document.write('0');
document.write(+time1+':');
if (min1 < 10) document.write('0');
document.write(''+min1+'</b>');
}

