function toggle(it) {
  if ((it.style.backgroundColor == "none") || (it.style.backgroundColor == ""))
    {
    it.style.backgroundColor = "#BEF480";
    }
  else
    {it.style.backgroundColor = "";}
}
