function filterAanbod(type, value){
	if(type && value){
		$.ajax({
			cache: false,
			type: "GET",
			url: 'vraag_en_aanbod/filter/'+type+'/'+value,
			success: function(html){
				window.location.href = 'vraag_en_aanbod.html';
			},
			error: function(XMLHttpRequest, textStatus, errorThrown){
				showError(XMLHttpRequest['responseText']);
			}
		});
		return true;
	} else {
		return false;
	}
}

function ResetFilter(){
	$.get('vraag_en_aanbod/resetFilter', '', function(){
		window.location.href = 'vraag_en_aanbod.html';
	});
}
