function toggleBgColor( elem )
	{
	var style2 = elem.style;
	style2.backgroundColor = style2.backgroundColor? "":"#F6F6F6";
	} 
	
function toggleStyle(elem)
	{
	elem.className = (elem.className == "invultabel3")?"invultabel2":"invultabel3";
	}
	
function swapStyle(elem)
	{
	if (elem.className != "invultabel3")
		{
		elem.className = (elem.className == "invultabel")?"invultabel2":"invultabel";
		}
	}
