function doBestellingItemFromMandje(ItemID){
    $.ajax({
      url: "bestelling_del.php?ID="+ItemID+"&ja=ja",
      context: document.body,
      success: function(){
        location.reload();
      }
    });
}

