function changeRow(tableRow, highLight) {
	if (highLight) {
			tableRow.className='color1';
		} else {
			tableRow.className='color';
		}
}
