﻿/* Shows the modal dialog with the confirmation that the item has been added to the cart */
function showItemAddedDialog(dialogElement) {
    $(dialogElement).dialog(
        {
            title: 'Zum Warenkorb hinzugefügt',
            closeText: 'Schliessen',
            modal: true,
            minWidth: 400,
            closeOnEscape: true,
            dialogClass: 'wegDialog',
            buttons:
            [
                {
                    text: 'Weitere Angebote',
                    style: 'width: 150px;',
                    click: function () { $(this).dialog('close'); }
                },
                {
                    text: 'Zum Warenkorb',
                    style: 'width: 150px;',
                    click: function () { window.location = 'ShoppingCart.aspx'; }
                }
            ]
        }
    );
}

