function deleteAlert(name,id){
  var conBox = confirm("Are you sure you want to delete " + name + " forever");
  if(conBox) location.href=id;
}

function form_importAlert(form){
  var conBox = confirm("Are you sure you want to import all entrants from this series?");
  if(conBox) document.forms[form].submit();
}

function form_deleteAlert(name,form){
  var conBox = confirm("Are you sure you want to delete " + name + " forever");
  if(conBox) document.forms[form].submit();
}



