function colorRow(id) {
	document.getElementById(id + '-list').style.backgroundColor = "#FFFFFF"
	document.getElementById(id + '-tussen').style.backgroundColor = "#FFFFFF"
}

function decolorRow(id) {
	document.getElementById(id + '-list').style.backgroundColor = "transparent"
	document.getElementById(id + '-tussen').style.backgroundColor = "transparent"
}