function Nahled(x,y,title,obr)
{
	// vycentrovani obrazku
	pos_x=(screen.width-x)/2;
	pos_y=(screen.height-y)/2;
	setup='width='+x+',height='+y+',top='+pos_y+',left='+pos_x+',resizable=1, scrollbars=1';
	pop = window.open ("","nove",setup);
	with (pop)
	{
		document.write('<html><head><title>'+title+'</title></head>');
		document.write('<body topmargin="0" leftmargin="0" style="overflow: scroll">');
		document.write('<a href="javascript:window.close();" title="Zavøít okno"><img src="'+obr+'" alt="" border="0"></a>');
		document.write('</body></html>');
		document.close();
	}
}