// CONFIRMATION BOX
function confirmation(string,location) {
  if (confirm(string)) {
    document.location = location;
  }
}