
function clickOnTableRow(loc) {
	window.top.location.href = loc;
}

function highlightTableRow(row) {
	row.className = 'resultRow_highlight';
}

function resetTableRow(row) {
	row.className = 'resultRow_white';
}

