function confirmation(link, name) {
	var answer = confirm("Delete "+name+"?")
	if (answer){
		window.location = link;
	}
}