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