/**
 * @author Joseph
 */



function underline(rowid) {
  var row = document.getElementById('resultrow'+rowid);
  row.style.background='#84BA39';
 };

function suppressunderline(rowid) {
  var row = document.getElementById('resultrow'+rowid);
  row.style.background='#C1DC9C';
 };

/*onmouseover=\"this.style.background='#AD6132';this.style.cursor='pointer'\" 

onmouseout=\"this.style.background='white';\"*/