
function toggleBedrijvenLijst() {
	var bedrijvenLijst = document.getElementById('bedrijven_lijst');
	
	if (bedrijvenLijst.style.display == 'none' || bedrijvenLijst.style.display == '') {
		bedrijvenLijst.style.display = 'block';
	} else {	
		bedrijvenLijst.style.display = 'none';
	}
}