function LmOver(elem, clr, is_active)
{
	elem.style.cursor = "pointer";
	
	if (is_active)
	{
		elem.style.backgroundColor = clr;
//		elem.children.tags('A')[0].style.color = "#D9D9D9"; polzwa se za teksta
	}
}
function LmOut(elem, clr, is_active)
{
	if (is_active)
	{
		elem.style.backgroundColor = clr;
//		elem.children.tags('A')[0].style.color = "#D9D9D9";
	}
}
function LmDown(elem, clr, is_active)
{
	if (is_active)
	{
		elem.style.backgroundColor = clr;
//		elem.children.tags('A')[0].style.color = "#D9D9D9";
	}
}
function LmUp(path)
{
	location.href = path;
}
/* --------------------------------------------------------------------- */
function MmOver(elem, decor, is_active)
{
	elem.style.cursor = "pointer";
	
	if (is_active)
	{
		elem.style.textDecoration = decor;
//		elem.children.tags('A')[0].style.color = "#D9D9D9"; polzwa se za teksta
	}
}
function MmOut(elem, decor, is_active)
{
	if (is_active)
	{
		elem.style.textDecoration = decor;
//		elem.children.tags('A')[0].style.color = "#D9D9D9";
	}
}
function MmUp(path)
{
	location.href = path;
}

/* --------------------------------------------------------------------- */
function MstepOver(elem, decor)
{
	elem.style.cursor = "pointer";
	elem.style.textDecoration = decor;
//	elem.children.tags('A')[0].style.color = "#D9D9D9"; polzwa se za teksta
}
function MstepOut(elem, decor)
{
	elem.style.textDecoration = decor;
//	elem.children.tags('A')[0].style.color = "#D9D9D9";
}
function MstepUp(path)
{
	location.href = path;
}

/* --------------------------------------------------------------------- */
function open_page(page)
{
	window.location = page;
}