function fold(showID) {
	if (document.getElementById) {
		extra=document.getElementById('extra'+showID).style;
		icon=document.getElementById('icon'+showID);
		linkTxt=document.getElementById('linkTxt'+showID);
		if (extra.display == "block") {
			extra.display = "none";
			icon.src="sharedimg/foldOut.gif";
			linkTxt.innerHTML = 'Meer informatie';
			linkTxt.innerText = 'Meer informatie';
		} else {
			extra.display= "block";
			icon.src="sharedimg/foldIn.gif";
			linkTxt.innerHTML = 'Minder informatie';
			linkTxt.innerText = 'Minder informatie';
		}
		return true;
	}
	else {
		alert("Helaas ondersteund uw browser niet alle functies van deze website. Onze excuses voor het ongemak.");
		return false;
	}
}
