
function ukazFoto(soubor) {
  if (window.foto != null)  window.foto.close();
  
  foto=window.open("","", "width=450, height=300, status=1");
  
  foto.document.open();
  foto.document.writeln('<html>');
  foto.document.writeln('<head>');
  foto.document.writeln('<title>Fotogalerie</title>');
  foto.document.writeln(' <script language="JavaScript" type="text/JavaScript">');
  foto.document.writeln(' <!--');
  foto.document.writeln('function okno() {');
  foto.document.writeln('  var sirka=document.getElementById("ident").width; ');
  foto.document.writeln('  var vyska=document.getElementById("ident").height;');
  foto.document.writeln('  window.resizeTo(sirka+50,vyska+84);');
  foto.document.writeln('}');
  foto.document.writeln('//--> ');
  foto.document.writeln('</'+'script>');	
  foto.document.writeln('</head>');
  foto.document.writeln('<body leftmargin="0" topmargin="10" marginwidth="0" marginheight="10" bgcolor="black">');
  foto.document.writeln('<div align="center"><img id="ident" src="'+soubor+'" onLoad="okno()" onclick="window.close()"/></div>');
  foto.document.writeln('</body>');
  foto.document.writeln('</html>');
  foto.document.close();
  
  window.foto.focus()
}
function confirmdelete(adresa) {
	var answer = confirm("Opravdu chcete smazat tento obrazek? "+adresa);
	if (answer){
		window.location = adresa;
	}
}
