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_14 = new CodeZoneAD("ZoneAD_14");
ZoneAD_14.ZoneID      = 14;
ZoneAD_14.ZoneWidth   = 0;
ZoneAD_14.ZoneHeight  = 0;
ZoneAD_14.ShowType    = 1;

var objAD = new ObjectAD();
objAD.ADID           = 19;
objAD.ADType         = 4;
objAD.ADName         = "2009建站大促销";
objAD.ImgUrl         = "";
objAD.ImgWidth       = 0;
objAD.ImgHeight      = 0;
objAD.FlashWmode     = 0;
objAD.ADIntro        = "<script language=\"javascript\">\n\r// JavaScript Document\n\rdocument.write(\"<table width=950 border=0 align=center cellpadding=0 cellspacing=0 style=\'margin-bottom:3px;margin-left:-10px\'><tr><td align=center>\");\n\rdocument.write(\"<div id=bigtcad style=\'width:100%;background-color:#630400\'><a href=\'\indextop/2009.htm\' target=\'_blank\'><img src=\'/indextop/p_20090107_02.gif\' width=\'950\' height=\'161\' border=\'0\' title=\'2009年建站大优惠\' /></a><br><a href=javascript:void(0) onclick=\'tjadcancel(2)\'><img src=\'/indextop/p_20090107_03.gif\' width=\'950\' height=\'21\' border=\'0\' title=\'2009年建站大优惠\' /></div>\");\n\rdocument.write(\"<div id=smalltcad style=\'display:none;width:100%;background-color:#dc0000\' onmouseover=\'tjadcancel(1)\'><img src=\'/indextop/p_20090107_01.gif\' width=\'950\' height=\'32\' border=\'0\' title=\'2009年建站大优惠\' /></div>\");\n\r\n\rdocument.write(\"</td></tr></table>\");\n\rfunction tjadcancel(ca){\n\r	if(ca==0){\n\r		document.all.bigtcad.style.display=\"none\";\n\r		document.all.smalltcad.style.display=\"block\";\n\r	}else if(ca==1){\n\r		document.all.bigtcad.style.display=\"block\";\n\r		document.all.smalltcad.style.display=\"none\";\n\r		setTimeout(\"tjadcancel(0)\",\"15000\");\n\r	}else{\n\r		document.all.bigtcad.style.display=\"none\";\n\r		document.all.smalltcad.style.display=\"block\";\n\r	}\n\r}\n\rsetTimeout(\"tjadcancel(0)\",\"15000\");\n\r\n\r\n\r\n\r\n\r</script>";
objAD.LinkUrl        = "";
objAD.LinkTarget     = 1;
objAD.LinkAlt        = "";
objAD.Priority       = 1;
objAD.CountView      = 1;
objAD.CountClick     = 0;
objAD.InstallDir     = "/";
objAD.ADDIR          = "AD";
ZoneAD_14.AddAD(objAD);

ZoneAD_14.Show();

