<!--
function foto(URL,KtoraFotka) {
	document.images[KtoraFotka].src = URL;
}
function zoom(imageName,imageWidth,imageHeight) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left=100,top=40");
	newWindow.document.open();
	newWindow.document.write('<html><title>oio</title><body bgcolor="#E9E7E1" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="javascript:self.close()">'); 
	newWindow.document.write('<img src='+imageName+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
//-->
