function confirmBox(URL, string) {

 if (confirm(string)) {

   location.replace(URL);

 }

}