/* author: krzykowski@inmedia-polska.pl
		   kirsz@inmedia-polska.pl */
/* Creation date: 2005-02-10 */

/* zmiana stylu elementow lewego menu */
function leftLink(elemId, back, textColor)	
{
	obj = document.getElementById(elemId);
	obj.style.backgroundImage=back;
	obj.style.color=textColor;
	obj.style.cursor='pointer';
}	


/* zmiana stylu elementow lewego PODmenu */
function leftLinkM(elemId, frameColor, textColor)	
{
	obj = document.getElementById(elemId);
	obj.style.borderBottomColor=frameColor;
	obj.style.color=textColor;
	obj.style.cursor='pointer';
}	

function leftLinkR(elemId, frameColor, textColor)	
{
	obj = document.getElementById(elemId);
	obj.style.borderBottomColor=frameColor;
	obj.style.color=textColor;
	obj.style.cursor='pointer';
}



function openSite(site)
{
	location.href = site;
}

/* disables all articles, but the one with selected content */
function changeArticle(nr, allArt)
{
	for(i=0; i<allArt; i++)
	{
		obj = document.getElementById('art'+i);
		obj.style.display = 'none';		
	}
	obj = document.getElementById('art'+nr);
	obj.style.display = 'block';			
}