function showTime(){document.getElementById("clock_box").innerHTML=formatTime();
setTimeout("showTime()",1000)
}function formatTime(){var F=new Date();
var B=F.getHours();
var E=F.getMinutes();
var G=F.getSeconds();
var A=F.getDay();
var H=F.getMonth();
var C=F.getDate();
var D=F.getYear();
if(A===0){A="\u0412\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435"
}if(A===1){A="\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a"
}if(A===2){A="\u0412\u0442\u043e\u0440\u043d\u0438\u043a"
}if(A===3){A="\u0421\u0440\u0435\u0434\u0430"
}if(A===4){A="\u0427\u0435\u0442\u0432\u0435\u0440\u0433"
}if(A===5){A="\u041f\u044f\u0442\u043d\u0438\u0446\u0430"
}if(A===6){A="\u0421\u0443\u0431\u0431\u043e\u0442\u0430"
}H+=1;
if(C<10){C="0"+C
}if(H<10){H="0"+H
}if(D<=99){D="19"+D
}if((D>99)&&(D<2000)){D+=1900
}if(B<10){B="0"+B
}if(G<10){G="0"+G
}if(E<10){E="0"+E
}return A+", "+C+"."+H+"."+D+" - "+B+":"+E+":"+G
};
