var bc;
var fc;

function M1(obj)
{
	bc = obj.style.backgroundColor;
	fc = obj.style.color;
	obj.style.backgroundColor = "navy";
	obj.style.color = "white";
}

function M2(obj)
{
	obj.style.backgroundColor = bc;
	obj.style.color = fc;
}
