		function popFaq(plik,w,h)
			{
				okno = null;
				if(window.screen)
			{
				aw = screen.availWidth;
				ah = screen.availHeight;
			}
			else
			{
				aw=640;
				ah=480;
			}
				dane="width="+w+",height="+h+",left="
				+(aw-w)/3+",top="
				+(ah-h)/3 
				+",toolbar=no,location=no,directories=no,"
				+"status=no,menubar=no,"
				+"scrollbars=yes,resizable=no";
				okno=window.open(plik,'pop',dane);
			}