// JavaScript Document
function confirm_box(message,url){
	$value = confirm(message);
	if($value){
		window.location = url;
	}
	return false;
}