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