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

