function Confirm_Action(confirmURL, message) {
  if (confirm(message)) {
    document.location = confirmURL;
  }
}
