
function selectLine(el) {
  if (el != null) {
    el.style.backgroundColor = '#f2f6f6';
    el.style.fontWeight = 'bold';
  }
}

function unselectLine(el) {
  if (el != null) {
    el.style.backgroundColor = '';
    el.style.fontWeight = '';
  }
}