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_38 = new CodeZoneAD("ZoneAD_38");
ZoneAD_38.ZoneID      = 38;
ZoneAD_38.ZoneWidth   = 0;
ZoneAD_38.ZoneHeight  = 0;
ZoneAD_38.ShowType    = 1;

var objAD = new ObjectAD();
objAD.ADID           = 49;
objAD.ADType         = 4;
objAD.ADName         = "顶部公告2009-滚动内容";
objAD.ImgUrl         = "";
objAD.InstallDir     = "/";
objAD.ImgWidth       = 0;
objAD.ImgHeight      = 0;
objAD.FlashWmode     = 0;
objAD.ADIntro        = "<a href=\"http://www.z-love.cn/Article/HTML/6284.shtml\" target=\"_blank\">郑重声明：关于本站游戏“报毒”问题的解释及解决办法！详情请点击查看！  [10年6月30日]</a><br/>\n\r注意！本站重新启用下载线程限制，请大家不要同时下载多部游戏，请一部一部下载，感谢支持！ [10年4月19日]<br/>\n\r<a href=\"http://www.z-love.cn/Article/HTML/6284.shtml\" target=\"_blank\">好消息！最爱部落推出“终身会员”啦！只需369元即可永久无限期下载所有游戏！为答谢大客户，另有299元优惠价，详情请点击查看！ [10年3月17日]</a><br/>\n\r即日起，新老会员每天登陆更有100积分相送，截止时间另行通知，机会难得，赶快注册把！ [09年10月8日]<br/>\n\r<a href=\"http://cash.alipay.com/?src=yy_yanshi_xj01\" target=\"_blank\">没有网银如何付款？支付宝网点支付，网上购物可用现金买单啦！强烈推荐给没有网银的朋友们，详情请点击查看！ [09年7月6日]</a><br/>\n\r<script language=\'javascript\'>\n\r<!--\n\rvar oMarquee = document.getElementById(\"announce_top_right\"); //滚动对象\n\rvar iLineHeight = 35; //单行高度，像素\n\rvar iLineCount = 5; //实际行数\n\r // -->\n\r</script>";
objAD.LinkUrl        = "";
objAD.LinkTarget     = 1;
objAD.LinkAlt        = "";
objAD.Priority       = 1;
objAD.CountView      = 0;
objAD.CountClick     = 0;
objAD.ADDIR          = "Images4";
ZoneAD_38.AddAD(objAD);

ZoneAD_38.Show();
