function confirmation(message, target) {
	if (confirm(message)) {
		goto(target);
	}
}

function goto(target) {
	location.href = target;
}