function HighLight(box, what)
{
	box.className = what+"BlockActive";
}

function UndoHighLight(box, what)
{
	box.className = what+"Block";
}
