function extpict(picture, w, h)
{
	winname   = ''; // jmeno oteviraneho okna

	// fyzické rozlišení obrazovky
	scw = window.screen.availWidth-30;
	sch = window.screen.availHeight-30;

	// inicializuji obrázek
	foto = new Image();
	foto.src = picture;

	// úprava velikosti okna
	if (!w) winwidth=foto.width; else winwidth=w; // zjistím rozlišení obrázku
	if (!h) winheigh=foto.height; else winheigh=h;
	
	winw = winwidth+5;
	winh = winheigh+5;
	
	if (winwidth>scw) // nastavím novou velikost obrázku
	{
		winheigh=(scw/winwidth)*winheigh;
		winwidth=scw;
	}
	if (winheigh>sch)
	{
		winwidth=(sch/winheigh)*winwidth;
		winheigh=sch;
	}

	// vypočítám novou pozici okna
	wtop=(sch/2)-(winheigh/2); if (wtop<0) wtop=0;
	wleft=(scw/2)-(winwidth/2); if (wleft<0) wleft=0;

	// otevřu nové okno
	Preview = window.open('/extpict.php?file='+picture, winname, 'resizable=1, status=0, menubar=0, location=0, directories=0, width='+winw+', height='+winh+', top='+wtop+', left='+wleft);
	
	// vrátím zpátky chybu, aby se nepoužil odkaz
	return false;
}
