function showFoto(fotoName)
{

	newWindow = window.open("","okno","width=20,height=20,left=50,top=50");
	newWindow.document.open();
	newWindow.document.write('<html><title></title>');
	newWindow.document.write('<script TYPE="text/javascript">');
	newWindow.document.write('function dopasuj() {szer = document.fotografia.width;wys = document.fotografia.height;top.window.resizeTo(szer,wys);}');
	newWindow.document.write('</script>');        
	newWindow.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onClick="window.close()" onBlur="self.close()" onLoad="dopasuj();">'); 
	newWindow.document.write('<img src="'+fotoName+'" name="fotografia" alt="" />'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();

}

