// Script bij website van Rob Haak

function SetHL(rowId,s) {
	r = document.getElementById(rowId);
	r.style.cursor='pointer';
	if (s == 1) { 	// highlight aan
		r.style.color = '#ffcc00';
	} else {		// highlight uit
		r.style.color = '#cccccc';	
	}
}
