		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);
			}
			
			
			function FaqRepeater_ExpandCollapse(hideThis) {
	var tr = document.getElementById(hideThis);
	if(tr != null) {
		if(tr.style.display == '')
			tr.style.display = 'none';
		else
			tr.style.display = '';
	}
}
