function onDeleteClick(username) {
  if (username == "demo") {
    alert("Delete disabled for " + username);
    return false;
  }
  else {
    return confirm('Really delete this?');
  }
}
