function ShowDiv(id,zichtbaar)
{
	var divje = document.getElementById(id);
	divje.style.visibility=zichtbaar;
}

