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

