 /**
  * code 地区代码
  * name 地区名称
  * hy   会员单位
  * zq   证券公司
  * jj   基金公司
  * tz   投资咨询公司
  * zc   资产管理公司
  * jys  交易所和登记公司
  * tg   基金托管机构
  * df   地方协会
  */
  
 function AreaItem(code, name, hy, zq, jj, tz, jys, tg, df, zc)
  {
  	this.code = code;
  	this.name = name;
  	this.hy   = hy;
  	this.zq   = zq;
  	this.jj   = jj;
  	this.tz   = tz;
  	this.jys  = jys;
  	this.tg   = tg;
  	this.df   = df;
  	this.zc   = zc;
  }
  
 /**
  * area 会员单位所在省代码
  * hyhtml 会员单位html字符串
  */ 
 function HyUnitItem(area,hyhtml){
   this.area = area;
   this.hyhtml = hyhtml;
 }  
