function bugTable(tableRow, highLight) {
	if (highLight) {
		tableRow.style.backgroundColor = '#A4C4DB';
	} else {
		tableRow.style.backgroundColor = 'white';
	}
}

function DoNav(theUrl) {
	document.location.href = theUrl;
}
