//cd.js, it stands for Confirm Delete :)
//made by Thomas Hunter in the year of our lord, 2006
function cd(delUrl) {
  if (confirm("Are you sure you would like to perform this action?")) {
    document.location = delUrl;
  }
}
