function OknoNewImage(jmeno,x,y,alt){
	Xpozice = (window.screen.width/2) - (x/2+10)
	Ypozice = (window.screen.height/2) - (y/2+10)
	var okno=window.open('','okno','width='+x+',height='+y+',resizable=0, menubar=0,toolbar=0,left='+Xpozice+',top='+Ypozice+',directories=0,location=0, scroolbars=0,copyhistory=0');
	okno.document.open();
	okno.document.writeln('<html>\n<head>\n<title>Foto</title>\n<meta HTTP-EQUIV="Content-Type" content="text/html; charset=ISO-8859-2">\n</head>\n<body rightmargin="0" leftmargin="0" topmargin="0" bottommargin="0" marginwidth="0" marginheight="0" onClick="javascript: window.close();">');
	okno.document.writeln('<img src="'+jmeno+'" alt="'+alt+'" onClick="javascript: window.close();">');
	okno.document.writeln('</body>\n</html>');
	okno.document.close();
}

