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