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_4 = new CodeZoneAD("ZoneAD_4");
ZoneAD_4.ZoneID      = 4;
ZoneAD_4.ZoneWidth   = 0;
ZoneAD_4.ZoneHeight  = 0;
ZoneAD_4.ShowType    = 1;

var objAD = new ObjectAD();
objAD.ADID           = 4;
objAD.ADType         = 4;
objAD.ADName         = "网页尾";
objAD.ImgUrl         = "";
objAD.ImgWidth       = 0;
objAD.ImgHeight      = 0;
objAD.FlashWmode     = 0;
objAD.ADIntro        = "<table cellSpacing=0 cellPadding=0 width=910 align=center border=0 style=\"margin-top:5px\">\n\r    <tr>\n\r      <td height=\"31\" colspan=\"2\" bgcolor=\"#37AF00\" id=\"dh41\"><div align=\"center\"><A href=\"/zidingyi/guanyu.html\">关于我们</A> | <A href=\"/zidingyi/pinzhi.html\">品质保证</A> | <A href=\"/zidingyi/lianxi.html\">联系我们</A> | <A href=\"/zidingyi/baoming.html\">报名参团</A> | <A href=\"/zidingyi/zhifu.html\">支付方式</A> | <A href=\"/FriendSite/Index.asp?KindType=1\" target=\"_blank\">友情链接</A> | <A href=\"/zidingyi/map.html\">网站地图</A> | <A href=\"/zidingyi/banquan.html\">版权声名</A> | <A href=\"javascript:window.external.addFavorite(\'http://www.yxynly.com\',\'『印象云南旅游网』\');\">收藏本站</A> | <a href=\"/zidingyi/lyht.htm\" target=\"_blank\">旅游合同</a></div></td>  \n\r    </tr>\n\r    <tr>\n\r      <td width=170 height=\"40\" valign=\"top\" background=\"/images/B_logo.jpg\"><img src=\"/images/index1_61.gif\" width=\"240\" height=\"120\" alt=\"\"></td>\n\r      <td width=\"737\" height=40 vAlign=top><table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n\r        <TR>\n\r          <TD colSpan=\"2\"><DIV align=\"left\" twffan=\"done\"></DIV></TD>\n\r        </TR>\n\r        <TR>\n\r          <TD width=\"408\" height=\"100\" valign=\"top\"><p>【公司全称】昆明康辉旅行社有限公司（云南康辉旅游集团）<BR>\n\r            【许可证号】Y-LN-GJ00042 （<A href=\"/zidingyi/pinzhi.html\" target=\"_blank\">营业执照复印件</A>）\n\r            <BR>\n\r              【业务传真】0871-3519955<BR>\n\r              【客服电话】0871-3525628  6576867  13577144847 13888092722 <br>\n\r              【邮政编码】650011<br>\n\r              【联系地址】云南昆明北京路99号云南印象城·昆明康辉国际旅行社4楼412<BR>\n\r          </p>          </TD>\n\r          <TD width=\"260\" valign=\"top\"><p>【负责经理】吴涛 张琳<br>\n\r            【接 待 员】张伟明 尹清华 <br>\n\r              【客服 MSN】<A href=\"mailto:cctservice@hotmail.com\">cctservice@hotmail.com</A><BR>\n\r              【客服QQ号】<A href=\"http://wpa.qq.com/msgrd?V=1&Uin=409296802&Site\" target=\"_blank\">409296802</A> <A href=\"http://wpa.qq.com/msgrd?V=1&Uin=469166692&Site\" target=\"_blank\">469166692</A> <BR>\n\r              【企业信箱】<A href=\"mailto:cct-kmlyjp@163.com\">cct-yxynly@163.com<br>\n\r              </A>【网站地址】<A href=\"http://www.yxynly.com\">http://www.yxynly.com</A><br>\n\r              <BR>\n\r            </p>          </TD>\n\r        </TR>\n\r      </table></td></tr>\n\r    <tr>\n\r      <td width=170 height=\"2\" background=\"/images/B_logo.jpg\"> </td>\n\r      <td vAlign=top height=2></td>\n\r    </tr>\n\r  </table>\n\r";
objAD.LinkUrl        = "";
objAD.LinkTarget     = 1;
objAD.LinkAlt        = "";
objAD.Priority       = 1;
objAD.CountView      = 0;
objAD.CountClick     = 0;
objAD.InstallDir     = "/";
objAD.ADDIR          = "AD";
ZoneAD_4.AddAD(objAD);

ZoneAD_4.Show();
