function setColor(obj, color) {
  obj.setAttribute('backup', obj.getAttribute('backgroundColor'));
  obj.setAttribute('backgroundColor', color);
  obj.onmouseout = new Function("this.setAttribute('backgroundColor', this.getAttribute('backup'));");
}


<tr onmouseover="setColor(this, 'color')">

Posted by 알 수 없는 사용자
,