// JavaScript Document

function ChangeColor(tableRow, highLight, orig) {
	if (highLight) {
	  tableRow.style.backgroundColor = '#B1BB1E';
	  tablerow.className='cursor';
	}else{
	  tableRow.style.backgroundColor = orig;
	}
 }
