function okno(jmeno,x,y,title,alt)
	{
	
	var okno=window.open('','okno','width='+x+',height='+y+',resizble=0,menubar=0,toolbar=0,left=10,top=10,directories=0,location=0,scroolbars=0,copyhistory=0');
	okno.document.open();
	okno.document.writeln('<html>\n<head>\n<title>'+title+'</title>\n<meta HTTP-EQUIV="Content-Type" content="text/html; charset=UTF-8">\n<link rel="stylesheet" type="text/css" media="screen,projection" href="foto.css" /></head>\n<body topmargin="0" leftmargin="0" bottommargin="0" rightmargin="0">');
	okno.document.writeln('<img src="'+jmeno+'" title="'+alt+'">');
	okno.document.writeln('<br /><a href="javascript:self.close()">Zavřít okno</a>');
	okno.document.writeln('</body>\n</html>');
	okno.document.close();
	}
