function LiteOn (obj)
{
	obj.style.textDecoration = 'underline';
}

function LiteOff (obj)
{
	obj.style.textDecoration = 'none';
}
