	noweokno=null;
	function noweOkno(src, w, h)
	{
		if(window.screen)
		{
			aw=screen.width;
			ah=screen.height;
		}
		else
		{
			aw=640;
			ah=480;
		}

		ustawienia=
			"left="+(aw-w)/2+","
			+"top="+((ah-h)/2-28)+","
			+"screenX="+(aw-w)/2+","
			+"screenY="+(ah-h)/2+","
			+"width="+w+","
			+"height="+h+","
			+"toolbar=no,"
			+"location=no,"
			+"directories=no,"
			+"status=no,"
			+"menubar=no,"
			+"scrollbars=yes,"
			+"resizable=no"

		if (!(noweokno==null || noweokno.closed))
			noweokno.close();

		noweokno=window.open(src,'Foto',ustawienia);
		noweokno.focus();

		return false;
	}
