function underline(sId)
{
	oDiv = document.getElementById(sId);
	if(oDiv)
	{
		//alert(oDiv.style.cursor);
		oDiv.style.textDecoration = "underline";
	}
}

function normal(sId)
{
	oDiv = document.getElementById(sId);
	if(oDiv)
	{
		oDiv.style.textDecoration = "";
	}
}

function showLeftMenuBG(sId)
{
	oTd = document.getElementById('leftMenuItem'+sId)
	if(oTd)
	{
		oTd.style.background = "transparent url(/kernel/images/bgLeftMenuItem.jpg) no-repeat scroll left center";
	}
}

function hideLeftMenuBG(sId)
{
	oTd = document.getElementById('leftMenuItem'+sId)
	if(oTd)
	{
		oTd.style.background = "";
	}
}

function changeLogo(sId)
{
	oImage = document.getElementById('contactsLogo');
	if(oImage)
	{
		if(sId > 0)
		{
			oImage.src = '/i/members/'+sId+'/logo.jpg';
		}
		else
		{
			oImage.src = '/kernel/images/logo_apfi.jpg';
		}
	}
}

