function confirm_redirect(question, url) {
	var answer = confirm(question);
	if (answer) window.location = url;
}
