﻿function f_msgTxt(p_msgCD) {

    return f_commonTxt(p_msgCD, "F_Msgtxt");

}

function f_labelTxt(p_msgCD) {

    return f_commonTxt(p_msgCD, "F_Labeltxt");

}

function f_commonTxt(p_msgCD, p_function) {

    var v_result = '';

    $.ajax({
        type: "POST",
        async: false,
        url: g_root + "WebServices/LanguageWS.asmx/" + p_function,
        contentType: "application/json; charset=utf-8",
        data: "{p_msgCD:'" + p_msgCD + "'}",
        dataType: "json",
        success: function(response) {
            if (response.d != '') {
                v_result = response.d;
            }
        }
    });

    return v_result;

}
