public static string B_get_maximized_dialog(Global global, string sShopId)
        {
            backoffice.admin_shop shop = global.www_backoffice().get_shop(sShopId);

            string sTextInputId = SHOP_UPDATE.MERCHANT_UPDATE.getContainerId(shop) + "_text";
            string sLabel       = "BAX-ID";
            string sOldValue    = shop.sMerchantId;
            string sJavascriptFunction_on_save   = "shop_update_merchant_id_save('" + shop.iId.ToString() + "','" + sTextInputId + "') ";
            string sJavascriptFunction_on_cancel = "shop_update_merchant_id_cancel('" + shop.iId.ToString() + "') ";

            StringBuilder sb = new StringBuilder();

            sb.Append(HTML_TOOLBOX.get_text_input_maximized(sTextInputId, sLabel, sOldValue, sJavascriptFunction_on_cancel, sJavascriptFunction_on_save));
            return(sb.ToString());
        }