function confirmDelete (question, redirect) {
	var check = confirm(question);
	
	if(check == true) {
		window.location.href = redirect;
	}
}