function toggle(box,theId) {
   if(document.getElementById) {
      var cell = document.getElementById(theId);
      if(box.checked) {
         cell.className = "other-rows-on";
      }
      else {
         cell.className = "other-rows-off";
      }
   }
}