function hilite(id)
{
  document.getElementById(id).style.backgroundColor = "#FFFFAA";
}

function nolite(id)
{
  document.getElementById(id).style.backgroundColor = "#EEE8CD";
}

