function tm(mode,divnum)
{
	var obj=document.getElementById("n"+divnum);
	if (mode==1) //mouseover
	{
		obj.style.backgroundColor="#5a1d1d";
		obj.style.color="#FFFFFF";

	}
	else //mouseout
	{
		obj.style.backgroundColor="#FFFFFF";
		obj.style.color="#5a1d1d";
	}
}