function changeColor(tableRow,highLight,color) {
	if (highLight) {
		tableRow.style.backgroundColor = 'red';
	} else {
		tableRow.style.backgroundColor = color;
	}
}

function getProduct(theUrl) {
	document.location.href = theUrl;
}
