function chcolor(obj)
{
	obj.style.color='red';
	obj.style.textDecoration='underline';
}
function recolor(obj)
{
	obj.style.color='black';
	obj.style.textDecoration='none';
}