	<!--	
	function zamen(nazev_obr,novy_obr) { document.images[nazev_obr].src=novy_obr; }
	
	function hodiny()
	{
		dnes= new Date();
		with (dnes)
		{
			hodina=getHours();
			minuta=getMinutes();
			sekunda=getSeconds();
		}
		cas=hodina;
		cas+=((minuta<10) ? ":0" : ":")+minuta;
		cas+=((sekunda<10) ? ":0" : ":")+sekunda;
		window.status=cas;
		window.setTimeout("hodiny()",1000);
	}

	function smallwindow(name,url,x,y)
	{
	okno = window.open(url,name,"menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no,width="+x+",height="+y);
	}
	function vokno(name,image,x,y)
	{
	x=x+15;
	y=y+35;
	okno = window.open("",name,"menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no,width="+x+",height="+y);
	okno.document.write("<html><head><style>A.odkaz {FONT-SIZE: 12pt; FONT-FAMILY:\"Times New Roman\"; FONT-WEIGHT: bold; COLOR: navy; TEXT-DECORATION: none;}</style><title>foto</title></head><body>");
	okno.document.write("<IMG SRC=\"");
	okno.document.write(image);
	okno.document.write("\">");
	okno.document.write("<br><center><a href=\"javascript:window.close();\" class=\"odkaz\">= Zavøít okno =</a></center>");
	okno.document.write("</body></html>");
	}
	//-->
