
function adjustMinheight() {
	// Zorgt ervoor dat de kolommen en het poppetje altijd tot het einde van de pagina komen, ook bij weinig content
	document.getElementById('container2').style.minHeight=document.body.clientHeight+"px";
	document.getElementById('container3').style.minHeight=document.body.clientHeight+"px";
}


// jQuery
$(document).ready(function() {

	$('.checkall').click(function () {
		$(this).parents('fieldset:eq(0)').find(':checkbox').attr('checked', this.checked);
	});

	$('form').submit(function(){
		// On submit disable its submit button
		$('input[type=submit]', this).attr('disabled', 'disabled');
	});
});
	
