function toggleRow(row, high)
{
	row.className = high ? 'contentHighlighted' : 'content';
}

function go(url)
{
	document.location.href = url;
}
