function foto(URL) {
if (navigator.appName == "Netscape")
	{window.open(URL)}
else
	{
	var WindowLeftPos = 0
	if (screen)
		{WindowLeftPos = (screen.width/2)-300} //300 proto ze prumerny obrazek siroky 500 az 600 px
		
	var win = (URL,"_blank",'leftmargin=0,topmargin=0,marginwidth=0,marginheight=0,toolbar=0,titlebar=0,menubar=0,location=0,scrollbars=1,resizable=0,width=300,height=350,left='+WindowLeftPos+',top=10');

	var msgWindow = window.open ('', 'ImageDetail', win);
	msgWindow.document.writeln ('<html>');
	msgWindow.document.writeln ('<head>');
	msgWindow.document.writeln ('<title>TJJ Lucky Drásov</title>');
	msgWindow.document.writeln ('<script language="JavaScript">');
	msgWindow.document.writeln ('function ImgSize() {');
	msgWindow.document.writeln ('if (screen.height <= (image.height+31))');
	msgWindow.document.writeln ('{window.resizeTo(image.width+12,screen.height-100);}');
	msgWindow.document.writeln ('else');
	msgWindow.document.writeln ('{window.resizeTo(image.width+12,image.height+31);}}');
	msgWindow.document.writeln ('<' + '/script>');
	msgWindow.document.writeln ('</head>');
	msgWindow.document.writeln ('<body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" bgcolor="#ffffff">');
	msgWindow.document.writeln ('<div align="center">');
	msgWindow.document.writeln ('<br/><font color="#000000" face="Verdana" size="-2"><b>Obrázek se načítá ...</b></font>');
	msgWindow.document.writeln ('<a href="JavaScript:window.close();"><img style="position:absolute;top:1px;left:1px" onload="ImgSize()" align="middle" id="image" src="'+URL+'" border="0" alt="Zavřít okno ..."></a>');
	msgWindow.document.writeln ('</div>');
	msgWindow.document.writeln ('</body>');
	msgWindow.document.writeln ('</html>');
	}
}
