


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);
}





