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