function pop_img(imgsrc, dimx, dimy)
{
	var w, attr;
	attr = 'toolbar=0, location=0, status=0, menubar=0, ' +
		'width=' + (dimx+30) + ', height=' + (dimy+30) +
		'scrollbars=1, resizable=1';
	w = window.open('', '', attr);
	w.focus();
	w.document.clear();
	w.document.write('<html><head><title>STARTECH spol. s r.o.</title></head>' +
		'<body bgcolor="#ffffff" onclick="javascript:window.close()">' +
		'<div align="center"><img src="' + imgsrc + 
		'" alt="Click at the picture to close the window"></div></body></html>'
		);
	w.document.close();
}
