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_125 = new CodeZoneAD("ZoneAD_125");
ZoneAD_125.ZoneID      = 125;
ZoneAD_125.ZoneWidth   = 0;
ZoneAD_125.ZoneHeight  = 0;
ZoneAD_125.ShowType    = 1;

var objAD = new ObjectAD();
objAD.ADID           = 276;
objAD.ADType         = 4;
objAD.ADName         = "新商务通";
objAD.ImgUrl         = "";
objAD.InstallDir     = "/";
objAD.ImgWidth       = 0;
objAD.ImgHeight      = 0;
objAD.FlashWmode     = 0;
objAD.ADIntro        = "<!--请将以下码嵌入到您网页源代码的最后面，通常是</body></HTML>之后,这样在服务器升级维护的时候也不会影响您的网页打开呈现速度。-->\n\r<script language=javascript>\n\r<!--\n\rvar LiveAutoInvite0=\'您好，来自%IP%的朋友\';\n\rvar LiveAutoInvite1=\'来自首页的对话\';\n\rvar LiveAutoInvite2=\'<STRONG>我是无忧商务网客服，请点接受与我对话。</STRONG><BR>1、您有找不到的资料，我可以为您找！&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>2、您有什么不明白的问题，我立即为您解答！\';\n\rvar LrinviteTimeout=3;\n\r//-->\n\r</script>\n\r<script language=\"javascript\" src=\"http://comm.5ucom.com/JS/LsJS.aspx?siteid=LKK44171693&float=1\"></script>\n\r\n\r\n\r\n\r   <script language=\"javascript\" type=\"text/javascript\" src=\"http://js.users.51.la/271750.js\"></script>  <noscript><a href=\"http://www.51.la/?271750\" target=\"_blank\"><img alt=\"我要啦免费统计\" src=\"http://img.users.51.la/271750.asp\" style=\"border:none\" /></a></noscript>   \n\r";
objAD.LinkUrl        = "";
objAD.LinkTarget     = 1;
objAD.LinkAlt        = "";
objAD.Priority       = 1;
objAD.CountView      = 0;
objAD.CountClick     = 0;
objAD.ADDIR          = "gg";
ZoneAD_125.AddAD(objAD);

ZoneAD_125.Show();
