var d=new Date()
    var weekday=new Array("Ne","Po","Út","St","Čt","Pá","So")
    var monthname=new Array("1","2","3","4","5","6","7","8","9","10","11","12")
    document.write(weekday[d.getDay()] + " " + d.getDate() + ". " + monthname[d.getMonth()] + ". " + d.getFullYear())

var justnow, cas = "", hodiny = "", minuty = "", vteriny = "";
function putTheWatchesIn() {
cas = "";
justnow = new Date();
hodiny = justnow.getHours().toString();
minuty = justnow.getMinutes().toString();
vteriny = justnow.getSeconds().toString();
if (hodiny.length == 1) cas += " ";
cas += hodiny + ":";
if (minuty.length == 1) cas += "0";
cas += minuty + ":";
if (vteriny.length == 1) cas += "0";
cas += vteriny;
document.forms.watches_form.watches_display.value = cas;
setTimeout ("putTheWatchesIn()",500);
}
