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_26 = new CodeZoneAD("ZoneAD_26");
ZoneAD_26.ZoneID      = 26;
ZoneAD_26.ZoneWidth   = 0;
ZoneAD_26.ZoneHeight  = 0;
ZoneAD_26.ShowType    = 1;

var objAD = new ObjectAD();
objAD.ADID           = 21;
objAD.ADType         = 4;
objAD.ADName         = "26";
objAD.ImgUrl         = "";
objAD.InstallDir     = "/";
objAD.ImgWidth       = 0;
objAD.ImgHeight      = 0;
objAD.FlashWmode     = 0;
objAD.ADIntro        = "<li><span class=\"num\">1</span><a href=\"http://union.dangdang.com/transfer/transfer.aspx?from=P-263183&backurl=http://product.dangdang.com/product.aspx?product_id=20029105\" target=\"_blank\">I SPY 视觉大发现系列</a></li>\n\r<li><span class=\"num\">2</span><a href=\"http://union.dangdang.com/transfer/transfer.aspx?from=P-263183&backurl=http://product.dangdang.com/product.aspx?product_id=9033155\" target=\"_blank\">噼里啪啦丛书</a></li>\n\r<li><span class=\"num\">3</span><a href=\"http://union.dangdang.com/transfer/transfer.aspx?from=P-263183&backurl=http://product.dangdang.com/product.aspx?product_id=9101733\" target=\"_blank\">神奇校车1</a></li>\n\r<li><span class=\"num\">4</span><a href=\"http://union.dangdang.com/transfer/transfer.aspx?from=P-263183&backurl=http://product.dangdang.com/product.aspx?product_id=20125989\" target=\"_blank\">别笑！我是英文单词书</a></li>\n\r<li><span class=\"num\">5</span><a href=\"http://union.dangdang.com/transfer/transfer.aspx?from=P-263183&backurl=http://product.dangdang.com/product.aspx?product_id=9101748\" target=\"_blank\">法布尔昆虫记</a></li>\n\r<li><span class=\"num\">6</span><a href=\"http://union.dangdang.com/transfer/transfer.aspx?from=P-263183&backurl=http://product.dangdang.com/product.aspx?product_id=20040506\" target=\"_blank\">森林报</a></li>\n\r<li><span class=\"num\">7</span><a href=\"http://union.dangdang.com/transfer/transfer.aspx?from=P-263183&backurl=http://product.dangdang.com/product.aspx?product_id=20022172\" target=\"_blank\">一看再看系列</a></li>\n\r<li><span class=\"num\">8</span><a href=\"http://union.dangdang.com/transfer/transfer.aspx?from=P-263183&backurl=http://product.dangdang.com/product.aspx?product_id=20000287\" target=\"_blank\">哈利·波特与死亡圣器</a></li>\n\r<li><span class=\"num\">9</span><a href=\"http://union.dangdang.com/transfer/transfer.aspx?from=P-263183&backurl=http://product.dangdang.com/product.aspx?product_id=20150679\" target=\"_blank\">嘟嘟和巴豆系列</a></li>\n\r<li><span class=\"num\">10</span><a href=\"http://union.dangdang.com/transfer/transfer.aspx?from=P-263183&backurl=http://product.dangdang.com/product.aspx?product_id=20095068\" target=\"_blank\">未央歌</a></li>";
objAD.LinkUrl        = "";
objAD.LinkTarget     = 1;
objAD.LinkAlt        = "";
objAD.Priority       = 1;
objAD.CountView      = 0;
objAD.CountClick     = 0;
objAD.ADDIR          = "AD";
ZoneAD_26.AddAD(objAD);

ZoneAD_26.Show();
