function UnderlineLink (o, textColor)
{
  o.style.textDecoration='underline';
  o.style.color = textColor;
}
function NoUnderlineLink (o, textColor)
{
  o.style.textDecoration='none';
  o.style.color = textColor;
}