
function confirmBox(url) {
	
	ans = window.confirm(textConfirm);
	if(ans){
		window.location.replace(url);
	}
}
