function confirmation() {
	var answer = confirm("Akkoord?")
	if (answer){
		alert("Actie bevestigd")
		window.location = "http://www.google.com/";
	}
	else{
		alert("Actie geannuleerd")
	}
}
