function hilite(obj)
{
	obj.style.textDecoration="underline";
}

function unhilite(obj)
{
	obj.style.textDecoration="none";
}
