
function m_over(tr)
{
	tr.lastcolor = tr.style.backgroundColor;
	tr.style.backgroundColor = "#cfe1ff";
}
function m_out(tr)
{
	tr.style.backgroundColor = tr.lastcolor;
	tr.lastcolor = "";
}