function showFoto(fotoUrl, w, h) {
	t=(window.screen.availHeight-h)/2;
	l=(window.screen.availWidth-w)/2;
	fWin=window.open('', 'fotoWindow', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,top='+t+',left='+l+',width='+w+',height='+h);
	fWin.window.resizeTo(parseInt(w+10), parseInt(h+60));
	fWin.document.title='Sunnysoft s.r.o.';
	with (fWin.document) {
		writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
		writeln('<html>');
		writeln('<head>');
		writeln('	<title>Sunnysoft s.r.o.</title>');
		writeln('</head>');
		writeln('<body style="padding: 0; margin: 0;">');
		writeln('<a href="javascript: self.close();"><img src="'+fotoUrl+'" alt="" width="'+w+'" height="'+h+'" border="0"></a>');
		writeln('</body>');
		writeln('</html>');
	}
	fWin.document.close();	
	fWin.focus();
}

