
	function highlightNewsRow(item) {
		item.style.backgroundColor = 'transparent';
		item.style.color = 'rgb(224,120,31)';
		item.style.cursor = 'pointer';	
	}
	function unhighlightNewsRow(item) {
		item.style.backgroundColor = 'transparent';
		item.style.color = 'rgb(40,60,80)';
	}
	
	function goToNewsURL(ID) {
		location.href = "sandiNews.php?page=" + ID;
	}
