function confirmDelete(anId)
{
  var c = confirm("Wirklich l&ouml;schen?");
  
  if(c== true)
    window.location.href="angebot_process.php?delete=" + anId;
  else
    return;
}
