<!--ukryj

function MakeArray(n) {
        this.lenght = n ;
        for( var i = 1; i<=n; i++){
                this[i]=0 }
return this }

        months = new MakeArray(12);
        days = new MakeArray(7);
        months[1]="I"
        months[2]="II"
        months[3]="III"
        months[4]="IV"
        months[5]="V"
        months[6]="VI"
        months[7]="VII"
        months[8]="VIII"
        months[9]="IX"
        months[10]="X"
        months[11]="XI"
        months[12]="XII"
        days[1]="niedziela"
        days[2]="poniedziałek"
        days[3]="wtorek"
        days[4]="środa"
        days[5]="czwartek"
        days[6]="piątek"
        days[7]="sobota"

        var now = new Date();
        var hours = now.getHours();
        var minutes = now.getMinutes();
        var seconds = now.getSeconds();
        var day = now.getDay();
        var nday = now.getDate();
        var month = now.getMonth();
        var year = now.getFullYear()
        var text = ""
		


 	if(year <= 200)
         year += 1900
        var timeValue = hours
        timeValue += ((minutes < 10) ? ":0" : ":") + minutes
        timeValue += ((seconds < 10) ? ":0" : ":") + seconds
        text=days[(day+1)]+", "+nday+" "+months[(month+1)]+" "+year+" r."
			
	document.write("<center>")	
	
			   if (seconds <= 60)
		{
        document.write("<center><A HREF='http://www.edukator.org.pl/dziennik.php'><IMG SRC='http://www.edukator.org.pl/pic/dziennik30.gif' WIDTH='557' HEIGHT='145' BORDER='0'></A></center>")
         }	


//-->



