function pop_img(obrazek, sirka, vyska)
{
	var w, attr;
	attr = 'toolbar=0, location=0, status=0, menubar=0, ' +
		'width=' + (sirka+40) + ', height=' + (vyska+40) +
		'scrollbars=1, resizable=1';
	w = window.open('', '', attr);
	w.focus();
	w.document.clear();
	w.document.write('<html><head><title>obrázek</title></head>' +
		'<body bgcolor="white" onclick="javascript:window.close()">' +
		'<div align="center"><img src="' + obrazek + 
		'" alt="Kliknutím zavřete okno" style="border: 5px solid #c7d9ff"></div></body></html>'
		);
	w.document.close();
}
