
function foc(id)			// Colorize
{
	id.style.filter = "null";
}

function unfoc(id)			// Black and white
{
	id.style.filter = "Gray";
}


function tfoc(id)			// highlight table
{
	id.bgColor="#dddddd";
}

function tunfoc(id)			// remove table highlight
{
	id.bgColor="";
}

