function chooseRowStyle(anchor) {
  if (window.location.href.toLowerCase().indexOf("#"+anchor) > 0) {
	document.write('<tr class=\"contact_highlight\">');
	}
  else {
	document.write('<tr class=\"contact_normal\">');
	}
}


function chooseEventRowStyle(anchor, expired) {
  if (window.location.href.toLowerCase().indexOf("#"+anchor) > 0) {
	document.write('<tr class=\"contact_highlight\">');
	}
  else if (expired)
	{
	document.write('<tr class=\"contact_expired\">');
	}
  else {
	document.write('<tr class=\"contact_normal\">');
	}
}

