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