function confirmation(url) {
	if (confirm("Do you really delete this data?")) {
		window.location = url;
	}
}

function confirmation2(url) {
	if (confirm("Do you really reset?")) {
		window.location = url;
	}
}

function confirmation3(url) {
	if (confirm("Do you really progress this action?")) {
		window.location = url;
	}
}
