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_297 = new CodeZoneAD("ZoneAD_297");
ZoneAD_297.ZoneID      = 297;
ZoneAD_297.ZoneWidth   = 0;
ZoneAD_297.ZoneHeight  = 0;
ZoneAD_297.ShowType    = 1;

var objAD = new ObjectAD();
objAD.ADID           = 63;
objAD.ADType         = 4;
objAD.ADName         = "book三友全频道导航";
objAD.ImgUrl         = "";
objAD.InstallDir     = "http://book.3you.cc/";
objAD.ImgWidth       = 0;
objAD.ImgHeight      = 0;
objAD.FlashWmode     = 0;
objAD.ADIntro        = "| <A class=Channel2 href=\"http://book.3you.cc/Index.html\">电脑首页</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/dnjc/\" target=_blank>电脑入门</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/sydq/\" target=_blank>术语解释</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/dnjc/jhjb/\" target=_blank>假货鉴别</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/dngz/\" target=_blank>电脑医院</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/wljs/\" target=_blank>网络技术</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/bgrj/\" target=_blank>办公软件</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/txrj/\" target=_blank>通讯软件</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/pmsj/\" target=_blank>平面设计</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/dmt/\" target=_blank>动画设计</A> |<BR>\n\r| <A class=Channel title=\"\" href=\"http://book.3you.cc/txrj/\" target=_blank>QQ</A> <A class=Channel title=\"\" href=\"http://book.3you.cc/czxt/\" target=_blank>windows</A>  <A class=Channel title=\"\" href=\"http://book.3you.cc/Linux/\" target=_blank>Linux</A>  <A class=Channel title=\"\" href=\"http://book.3you.cc/Cisco/\" target=_blank>Cisco</A>  <A class=Channel title=\"\" href=\"http://book.3you.cc/Java/\" target=_blank>Java</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/gjrj/\" target=_blank>工具</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/wysj/\" target=_blank>网页</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/bc/\" target=_blank>编程</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/bd/\" target=_blank>病毒</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/yx/\" target=_blank>游戏攻略</A> | <A class=Channel title=\"\" href=\"http://hr.dxrc.cn/kwd/\" target=_blank>网店赚钱</A> | <A class=Channel title=\"\" href=\"http://book.3you.cc/wzyx/\" target=_blank>网站营销</A> | <A class=Channel title=\"\" href=\"http://zgcdiy.com\" target=_blank>中关村在线攒机</A> |";
objAD.LinkUrl        = "";
objAD.LinkTarget     = 1;
objAD.LinkAlt        = "";
objAD.Priority       = 1;
objAD.CountView      = 0;
objAD.CountClick     = 0;
objAD.ADDIR          = "AD1";
ZoneAD_297.AddAD(objAD);

ZoneAD_297.Show();

