function confirmBox(txt, url) {
	if (confirm(txt)) {
		window.location.href=url;
	} 
}

