var Wybrkat='';
function rozwinGlz(id)
{
	var stan =document.getElementById('list'+id).style.display;
	
	if(stan=='none')
	{
		document.getElementById('list'+id).style.display='';
		document.getElementById('nn'+id).innerHTML='[-]';
		document.cookie='list'+id+'=1';
	}
	else
	{
		document.getElementById('list'+id).style.display='none';
		document.getElementById('nn'+id).innerHTML='[+]';
		document.cookie='list'+id+'=0';
	}
}
function rozwinGlzS(id)
{
	var stan =document.getElementById('list'+id).style.display;
	
	if(stan=='none')
	{
		document.getElementById('list'+id).style.display='';
		document.getElementById('nn'+id).innerHTML='[-]';
		document.cookie='listS'+id+'=1';
	}
	else
	{
		document.getElementById('list'+id).style.display='none';
		document.getElementById('nn'+id).innerHTML='[+]';
		document.cookie='listS'+id+'=0';
	}
}
function WyszukiwarkaWybKat(id)
{
	if(Wybrkat!='')
		{document.getElementById('dif'+Wybrkat).style.backgroundColor='';}
	
	document.getElementById('dif'+id).style.backgroundColor='#D69807';
	document.getElementById('wyszKAt').value=id;
	Wybrkat=id;
}
function WyszukiwarkaKolorowanie(id,stan)
{
	var wybrana = 	document.getElementById('wyszKAt').value;
	
	if(wybrana==id)
	{
		if(stan==1)
			{document.getElementById('dif'+id).style.backgroundColor='#F8BF3D';}
		else
			{document.getElementById('dif'+id).style.backgroundColor='#D69807';}
		
	}
	else
	{
		if(stan==1)
			{document.getElementById('dif'+id).style.backgroundColor='#AE5918';}
		else
			{document.getElementById('dif'+id).style.backgroundColor='';}
		
	}
	
}
