<!--
function time() {
var now = new Date()
yea = now.getYear()
if(yea <= 2000){yea=yea+1900}
mon = now.getMonth()+1
if (mon<10) {mon="0"+mon}
day = now.getDate()
if (day<10) {day="0"+day}
hou = now.getHours()
if (hou<10) {hou="0"+hou}
min = now.getMinutes()
if (min<10) {min="0"+min}
sec = now.getSeconds()
if (sec<10) {sec="0"+sec}
document.form_clock.clock.value= yea +"."+ mon +"."+ day +"- "+ hou +":"+ min +":"+ sec
setTimeout('time()',1000)
}
//-->