function confirmDeleteImage(imageId,documentId) {
	if (confirm("Weet u zeker dat u dit plaatje wilt verwijderen?"))
		window.location	= "/index.php?m=Admin&a=addImage&doc="+documentId+"&deleteId="+imageId;
}
function confirmDeleteMenuItem(menuItemId) {
	if (confirm("Weet u zeker dat u dit menu item wilt verwijderen?"))
		window.location	= "/index.php?m=Admin&a=editMenu&delete="+menuItemId;
}
function confirmDeleteDocument(documentId) {
	if (confirm("Weet u zeker dat u dit document wilt verwijderen?"))
		window.location	= "/index.php?m=Admin&a=addDocument&delete="+documentId;
}
