function ShowHideMenu(kogo)
{	var tt = document.getElementById(kogo);
	if(tt.style.display=='')
	{	tt.style.display='none';
	}
	else
	{	if(menu_aktywne)
		{	var tta = document.getElementById(menu_aktywne);
		    tta.style.display='none';
		}
		tt.style.display='';
		menu_aktywne=kogo;
	}
}
function ShowHide(kogo)
{	var tt = document.getElementById(kogo);
	if(tt.style.display=='')
		tt.style.display='none';
	else
		tt.style.display='';
}

function __ShowPopupRoz(url,width,height) 
{	var okienko = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=no,menubar=no,status=no' );
}
function __ShowPopup(url) 
{	var okienko = window.open(url,"displayWindow",'width=300,height=300,resizable=1,scrollbars=no,menubar=no,status=no' );
}
function SetKolor(to,kolor)
{	to.style.backgroundColor=kolor;
}

function Nasyc(to,nazwa)
{	//to.style.backgroundImage="url(gfx/"+nazwa+".gif)";
	to.style.backgroundColor="#000000";
}
function Odsyc(to,nazwa)
{	//to.style.backgroundImage="url(gfx/"+nazwa+"-f.gif)";
	to.style.backgroundColor="#e6a0a0";
}
