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