function showWin(pUrl, pWidth, pHeight)
{
	var wysokosc = ((document.all) ? document.body.clientHeight : window.innerHeight);
	var szerokosc = ((document.all) ? document.body.clientWidth : window.innerWidth) - 30;

	if (pHeight > wysokosc) pHeight = wysokosc;
	if (pWidth > szerokosc) pWidth = szerokosc;

	var okn = window.open(pUrl, 'okno', 'left=20,top=20,width=' + pWidth + ',height=' + pHeight);
	okn.focus();
}