function UnderlinedTR(myTR)
{
	myTR.style.backgroundColor = "#e7dfdf";
	myTR.style.cursor = "pointer";
		
	if (navigator.appName == "Microsoft Internet Explorer")
	{
		myTR.childNodes[0].childNodes[1].style.textDecorationUnderline = true;
		myTR.childNodes[1].style.textDecorationUnderline = true;
	}
	else
	{
		myTR.childNodes[1].childNodes[1].style.textDecoration = "underline";
		myTR.childNodes[3].style.textDecoration = "underline";
	}
}
	
function NotUnderlinedTR(myTR)
{
	myTR.style.backgroundColor = "#ffffff";
	myTR.style.cursor = "pointer";
		
	if (navigator.appName == "Microsoft Internet Explorer")
	{
		myTR.childNodes[0].childNodes[1].style.textDecorationUnderline = false;
		myTR.childNodes[1].style.textDecorationUnderline = false;
	}
	else
	{
		myTR.childNodes[1].childNodes[1].style.textDecoration = "none";
		myTR.childNodes[3].style.textDecoration = "none";
	}
}

function UnderlinedTRWithoutBackgr(myTR)
{
	myTR.style.cursor = "pointer";

	if (navigator.appName == "Microsoft Internet Explorer")
	{
		myTR.childNodes[0].childNodes[1].style.textDecorationUnderline = true;
		myTR.childNodes[0].childNodes[1].style.color = "#000000";
		myTR.childNodes[0].childNodes[0].style.color = "#000000";
	}
	else
	{
		myTR.childNodes[1].childNodes[2].style.textDecoration = "underline";
		myTR.childNodes[1].childNodes[2].style.color = "#000000";
		myTR.childNodes[1].childNodes[1].style.color = "#000000";
	}
}
	
function NotUnderlinedTRWithoutBackgr(myTR)
{
	myTR.style.cursor = "pointer";

	if (navigator.appName == "Microsoft Internet Explorer")
	{
		myTR.childNodes[0].childNodes[1].style.textDecorationUnderline = false;
		myTR.childNodes[0].childNodes[1].style.color = "#666666";
		myTR.childNodes[0].childNodes[0].style.color = "#666666";
	}
	else
	{
		myTR.childNodes[1].childNodes[2].style.textDecoration = "none";
		myTR.childNodes[1].childNodes[2].style.color = "#666666";
		myTR.childNodes[1].childNodes[1].style.color = "#666666";
	}
}
