function cnf(gotopath) {
  var c = confirm('Are you sure you want to DELETE this?');
  if (c) document.location= gotopath;
}

