var MS = navigator.appVersion.indexOf("MSIE");
window.isIE4 = (MS > 0) && (parseInt(navigator.appVersion.substring(MS + 5, MS + 6))  >= 4);

function Zero(val)
    { return (val < 10) ? "0" + val.toString() : val;  }

function ShowTime()
    {
      var tm = new Date();

      var h = tm.getHours();
      return Zero(h) + ":" + Zero(tm.getMinutes()) + ":" + Zero(tm.getSeconds())
;    }

function tik()
    { document.all.clock.innerText = ShowTime(); }

function DisplayDay()
{
var months=new Array(13);
months[1]="január";
months[2]="február";
months[3]="marec";
months[4]="apríl";
months[5]="máj";
months[6]="jún";
months[7]="júl";
months[8]="august";
months[9]="september";
months[10]="október";
months[11]="november";
months[12]="december";
var time=new Date();
var mes=months[time.getMonth() + 1];
var den=time.getDate();
var rok=time.getYear();
if ( rok < 1900)
	rok = rok + 1900;
var nazev_dne=new Array(7);
nazev_dne[2]="pondelok";
nazev_dne[3]="utorok";
nazev_dne[4]="streda";
nazev_dne[5]="štvrtok";
nazev_dne[6]="piatok";
nazev_dne[7]="sobota";
nazev_dne[1]="nedeľa";


document.write(nazev_dne[time.getDay()+1]+", ");
document.write(den + "." + mes + " " + rok);
}
