function tdHover(obj,st,colTab)
{
	if(colTab)
	{
		var tdColor = st ? "#fff" : "#cc0000";
		var ftColor = st ? "#000" : "#fff";

		obj.style.background = tdColor;
		obj.getElementsByTagName("a")[0].style.color = ftColor;
	}

	if(st)
	{
		obj.style.cursor = "hand";
		window.status = obj.getElementsByTagName("a")[0].href;
	}
	else
	{
		window.status = "";
	}
}
