
// ########################################################################
// global function to highlight a table row via css 
// ########################################################################

function hiRow(rowref,state)
{

  if (state){
    rowref.style.backgroundColor="#7375B5";
  }
  else
  {
    rowref.style.backgroundColor="#353886";
  }
  return;
}
																							