function popup(el) {
	var win=window.open('','Image','left=100,top=100,width=250,height=100,resizable=1');
	var alt=el.firstChild.alt;
	if(!alt) alt='Zavřít okno';
	win.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><title>'+ alt +'</title></head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0"><img onload="self.resizeTo(this.width, this.height); this.title=\''+ alt +'\'; if(self.stop) self.stop()" onclick="window.close()" alt="Nahrávám obrázek" src=""/></body></html>');
	win.focus();
	win.document.body.firstChild.src=el.href;
	return false;
}

