$(document).ready(function() {
	$('.delete').click(function() {
    return confirm("Do you really want to delete this entry?\nClick OK to confirm.");
  });
    $('.herstellen').click(function() {
    return confirm("Do you really want to delete this entry?\nClick OK to confirm");
  });
  $('.external').click(function() {
    open(this.href);
		return false;
  });
});
