﻿// JScript 文件
var CommonTypeMaps = new FsHashtable();
//var ActionType = new FsHashtable()
//ActionType.put("0","用户注册激活");
//ActionType.put("1","会员推荐标志");
//ActionType.put("2","产品消费标志");
//CommonTypeMaps.put("ActionType",ActionType);
function FindCommonTypeText(ctype,key)
{
    var ht = CommonTypeMaps.get(ctype);
    
    if(ht!=null && value!="undefined")
    {
        var value = ht.get(key);
        if(value!=null && value!="undefined")
        {
            return value;
        }else
        {
            return key;
        }
    }
}


