public void onClickOk()
    {
        if (dialogContext == DialogContext.STORE_LOAD_FAILURE)
        {
            HideDialogScreen();
        }

        if (dialogContext == DialogContext.STORE_LOADING)
        {
            HideDialogScreen();
        }

        if (dialogContext == DialogContext.PURCHASE_SUCCESS)
        {
            UseItem.Use(StoreActions.INSTANCE.product);
            HideDialogScreen();
            StoreActions.INSTANCE.resetCheckoutScreen();
            MenuNavigation.INSTANCE.selectStoreIcon();
        }
    }