DOM2 CSS Interface

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";
}