DOM2 CSS Highlighting Elements

function hlt(event) {
  this.style.backgroundColor=
     "rgb(255, 255, 204)";
  this.style.textDecoration=
     "underline";
}

function dlt(event) {
  this.style.backgroundColor=
      "transparent";
  this.style.textDecoration="none";
}