// JavaScript Document

function tabelmousehover(nr) {
	ch = document.getElementById('box'+nr);
	tr = document.getElementById('row'+nr);
	if(!ch.checked) {
		tr.className = 'tblhover';
	}
}
function tabelmouseout(nr,stijl) {
	ch = document.getElementById('box'+nr);
	tr = document.getElementById('row'+nr);
	if(!ch.checked) {
		tr.className = 'tblrow'+stijl;
	} else {
		tr.className = 'tblactive';
	}
}
function tabelmouseclick(nr) {
	ch = document.getElementById('box'+nr);
	tr = document.getElementById('row'+nr);
	ch.checked = !ch.checked;
	ch.focus();
	if(!ch.checked) {
		tr.className = 'tblhover';
	} else {
		tr.className = 'tblactive';
	}
}

function simpeltabelhover(nr) {
	tr = document.getElementById('row'+nr);
	tr.className = 'tblhover';
}
function simpeltabelout(nr,stijl) {
	tr = document.getElementById('row'+nr);
	tr.className = 'tblrow'+stijl;
}
