function deleteCheck(url) {
	var confirmation = confirm("Weet u zeker dat u deze pagina wilt verwijderen?\nAlle sub pagina's zullen ook worden verwijderd!");
	if (confirmation == true) {
		window.location = url;
	}
}

