function confirmSpam(action, message, url, server, section){
  var redirUrl = url;
  var a = action.toUpperCase();
  if (a == "INVALIDMAIL"){
  } else if (a == "ACTIVATED"){
  } else if (a == "MAILNOTFOUND"){
  } else if (a == "REMOVED"){
  } else if (a == "SAVED"){
  }

  alert(message);
  document.location = redirUrl;

}