function nahlad_fotografie(nazov, cesta, meno, x, y) {
	var okno=window.open('','okno',
	'width='+x+',height='+y+',resizable=1,menubar=0,toolbar=0,left=40,top=40,directories=0,location=0,scrollbars=1,copyhistory=0,status=0');

	okno.document.open();
	okno.document.writeln('<html>\n<head>\n<title>'+nazov+'</title>\n<link href="styles/style4.css" type="text/css" rel="stylesheet">\n</head>\n<body id="body" topmargin="1" leftmargin="1">');
	okno.document.writeln('<center><br><font class="Nadpis01">'+nazov+'</font><br/><br><img src="foto/'+cesta+'/'+meno+'"> <br>');
	okno.document.writeln('<input type="button" onClick="window.close()" value="Zatvoriť"></center>');
	okno.document.writeln('</body>\n</html>');
	okno.document.close();
}

