function m(row)
{
	var cells = row.cells;
	if (!cells) return;
	currBg = new Array();
	text_color = new Array();
	for (var i=0;i<cells.length;i++)
	{
		currBg[i] = cells[i].style.backgroundColor;
		text_color[i] = cells[i].style.color;

		cells[i].style.color = "#333333";

		if ( cells[i].className == "dropped" )
			cells[i].style.backgroundColor="#EFEA93";
		else if ( cells[i].className == "nk" )
			cells[i].style.backgroundColor="#F1EB8C";
		else if ( cells[i].className == "wkl" )
			cells[i].style.backgroundColor="#E4DD6C";
		else if ( cells[i].className == "wt" )
			cells[i].style.backgroundColor="#D7CF56";
		else if ( cells[i].className == "pos" )
			cells[i].style.backgroundColor="#EEE666";
		else if ( cells[i].className == "wczf" )
			cells[i].style.backgroundColor="#BDB540";
		else
			cells[i].style.backgroundColor="#FFFAAA";
	}
}
function u(row)
{
	var cells = row.cells;
	if (!cells) return;
	for (var i=0;i<cells.length;i++)
	{
		cells[i].style.backgroundColor=currBg[i];
		cells[i].style.color=text_color[i];
	}
}

