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