function ObjectAD() {
  /* Define Variables*/
  this.ADID        = 0;
  this.ADType      = 0;
  this.ADName      = "";
  this.ImgUrl      = "";
  this.ImgWidth    = 0;
  this.ImgHeight   = 0;
  this.FlashWmode  = 0;
  this.LinkUrl     = "";
  this.LinkTarget  = 0;
  this.LinkAlt     = "";
  this.Priority    = 0;
  this.CountView   = 0;
  this.CountClick  = 0;
  this.InstallDir  = "";
  this.ADDIR       = "";
}

function CodeZoneAD(_id) {
  /* Define Common Variables*/
  this.ID          = _id;
  this.ZoneID      = 0;

  /* Define Unique Variables*/

  /* Define Objects */
  this.AllAD       = new Array();
  this.ShowAD      = null;

  /* Define Functions */
  this.AddAD       = CodeZoneAD_AddAD;
  this.GetShowAD   = CodeZoneAD_GetShowAD;
  this.Show        = CodeZoneAD_Show;

}

function CodeZoneAD_AddAD(_AD) {
  this.AllAD[this.AllAD.length] = _AD;
}

function CodeZoneAD_GetShowAD() {
  if (this.ShowType > 1) {
    this.ShowAD = this.AllAD[0];
    return;
  }
  var num = this.AllAD.length;
  var sum = 0;
  for (var i = 0; i < num; i++) {
    sum = sum + this.AllAD[i].Priority;
  }
  if (sum <= 0) {return ;}
  var rndNum = Math.random() * sum;
  i = 0;
  j = 0;
  while (true) {
    j = j + this.AllAD[i].Priority;
    if (j >= rndNum) {break;}
    i++;
  }
  this.ShowAD = this.AllAD[i];
}

function CodeZoneAD_Show() {
  if (!this.AllAD) {
    return;
  } else {
    this.GetShowAD();
  }

  if (this.ShowAD == null) return false;
  document.write(this.ShowAD.ADIntro);
}

var ZoneAD_55 = new CodeZoneAD("ZoneAD_55");
ZoneAD_55.ZoneID      = 55;
ZoneAD_55.ZoneWidth   = 0;
ZoneAD_55.ZoneHeight  = 0;
ZoneAD_55.ShowType    = 1;

var objAD = new ObjectAD();
objAD.ADID           = 55;
objAD.ADType         = 4;
objAD.ADName         = "财知互动顶部通用频道导航代码";
objAD.ImgUrl         = "";
objAD.InstallDir     = "/";
objAD.ImgWidth       = 0;
objAD.ImgHeight      = 0;
objAD.FlashWmode     = 0;
objAD.ADIntro        = "| <A class=Channel href=\"/\">首页</A> | <A class=Channel title=管理理论 href=\"/manage/\" target=_blank>管理</A> | <A class=Channel title=管理实务 href=\"/firm/\" target=_blank>行业</A> | <A class=Channel title=行业技术 href=\"/skill/\" target=_blank>技术</A> | <A class=Channel title=表单表格 href=\"/form/\" target=_blank>表单</A> | <A class=Channel title=管理资料 href=\"/Shop/\" target=_blank>资料</A> | <A class=Channel title=生活居家 href=\"/life/\" target=_blank>生活</A> | <A class=Channel title=时尚美丽 href=\"/mode/\" target=_blank>时尚</A> | <A class=Channel title=健康养生 href=\"/health/\" target=_blank>健康</A> | <A class=Channel title=饮食菜谱 href=\"/diet/\" target=_blank>饮食</A> | <A class=Channel title=疾病防治 href=\"/sick/\" target=_blank>疾病</A> | <A class=Channel title=旅游出行 href=\"/tour/\" target=_blank>旅行</A> | <A class=Channel title=车行天下 href=\"/car/\" target=_blank>汽车</A> | <A class=Channel title=成功创业 href=\"/start/\" target=_blank>创业</A> | <A class=Channel title=投资理财 href=\"/money/\" target=_blank>理财</A> | <A class=Channel title=收藏世界 href=\"/keep/\" target=_blank>收藏</A> | <A class=Channel title=电脑网络 href=\"/computer/\" target=_blank>电脑</A> | <A class=Channel title=教育培训 href=\"/edu/\" target=_blank>教育</A> | <A class=Channel title=文学小说 href=\"/novel/\" target=_blank>文学</A> | <A class=Channel title=标准认证 href=\"/norm/\" target=_blank>标准</A> | <A class=Channel title=法律法规 href=\"/law/\" target=_blank>法制</A> |";
objAD.LinkUrl        = "";
objAD.LinkTarget     = 1;
objAD.LinkAlt        = "";
objAD.Priority       = 1;
objAD.CountView      = 0;
objAD.CountClick     = 0;
objAD.ADDIR          = "JSwAD";
ZoneAD_55.AddAD(objAD);

ZoneAD_55.Show();
