function casovnik()
{
var thetime=new Date();

var ssati=thetime.getHours();
var smin=thetime.getMinutes();
var nsecn=thetime.getSeconds();
var sdan=thetime.getDay();
var smesec=thetime.getMonth();
var sdanas=thetime.getDate();
var sgodin=thetime.getYear();
var blah=" ";



if (nsecn<10)
 nsecn="0"+nsecn;

if (smin<10)
 smin="0"+smin;

if (sdan==0)
  sdan="Nedelja";
if (sdan==1)
  sdan="Ponedeljak";
if (sdan==2)
  sdan="Utorak";
if (sdan==3)
  sdan="Sreda";
if (sdan==4)
  sdan="Cetvrtak";
if (sdan==5)
  sdan="Petak";
if (sdan==6)
  sdan="Subota";

smesec+=1;

if (sgodin<=99)
  sgodin= "19"+sgodin;

if ((sgodin>99) && (sgodin<2000))
 sgodin+=1900;

document.casovnik.clockspot.value=ssati+": "+smin+": "+nsecn+" "+blah+" "+sdan+", "+sdanas+"/"+smesec+"/"+sgodin;
//document.write("aa");
setTimeout('casovnik()',1000);
}  
