function ChangeColor(tableRow, highLight){
if (highLight) tableRow.style.backgroundColor = '#e0e8f6';
	else tableRow.style.backgroundColor = '#fff';
}

