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_3 = new CodeZoneAD("ZoneAD_3");
ZoneAD_3.ZoneID      = 3;
ZoneAD_3.ZoneWidth   = 0;
ZoneAD_3.ZoneHeight  = 0;
ZoneAD_3.ShowType    = 1;

var objAD = new ObjectAD();
objAD.ADID           = 3;
objAD.ADType         = 4;
objAD.ADName         = "910尾";
objAD.ImgUrl         = "";
objAD.ImgWidth       = 0;
objAD.ImgHeight      = 0;
objAD.FlashWmode     = 0;
objAD.ADIntro        = "<table width=\"910\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" class=\"margin_top_5px\">\n\r  <tr>\n\r    <td class=\"wy_331_s8\" style=\"border-top:8px #4da31c solid; border-bottom:2px #4da31c solid;\"><ul><li><a href=\"/zidingyi/guanyu.html\" target=\"_blank\">公司简介</a></li>\n\r      <li><a href=\"/zidingyi/pinzhi.html\" target=\"_blank\">品质保证</a></li>\n\r      <li><a href=\"/zidingyi/baoming.html\" target=\"_blank\">报名参团</a></li>\n\r      <li><a href=\"/zidingyi/zhifu.html\" target=\"_blank\">支付方式</a></li>\n\r      <li><a href=\"/FriendSite/index.asp\" target=\"_blank\">友情链接</a></li>\n\r      <li><a href=\"/zidingyi/hetong.html\" target=\"_blank\">旅游合同</a></li>\n\r      <li><a  href=\"javascript:window.external.AddFavorite(\'http://www.cct008.com\',\'昆明康辉旅行社有限公司\')\" target=\"_self\">收藏本站</a></li>\n\r    </ul></td>\n\r  </tr>\n\r</table><table width=\"910\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" class=\"margin_top_5px\">\n\r      <tr>\n\r        <td width=\"250\" align=\"center\"><img src=\"/skin/images/B_logo.gif\" width=\"200\" height=\"169\" /></td>\n\r        <td align=\"left\" valign=\"top\"><table width=\"99%\" height=\"169\" border=\"0\" align=\"right\" cellpadding=\"0\" cellspacing=\"0\" id=\"endconnect\">\n\r          <tr>\n\r            <td><strong>【公司全称】昆明康辉旅行社有限公司</strong></td>\n\r            <td><strong>【网站地址】www.cct008.com</strong></td>\n\r          </tr>\n\r          <tr>\n\r            <td><strong>【许可证号】L-YN-GJ00042 </strong></td>\n\r            <td><strong>【网站备案】<A href=\"http://www.miibeian.gov.cn\" target=\"_blank\">滇ICP备10002551号</A></strong></td>\n\r          </tr>\n\r          <tr>\n\r            <td><strong>【联 系 人】黄腾飞</strong></td>\n\r            <td><strong>【汇款名称】昆明康辉旅行社有限公司</strong></td>\n\r          </tr>\n\r          <tr>\n\r\n\r            <td><strong>【全国免费咨询电话】400-6016-650</strong></td>\n\r            <td><strong>【公司账号】5310 7804 5018 1600 04658</strong></td>\n\r          </tr>\n\r          <tr>\n\r            <td><strong>【业务传真】0871-3513142</strong></td>\n\r            <td><strong>【开户银行】交通银行昆明分行拓东路支行</strong></td>\n\r          </tr>\n\r          <tr>\n\r            <td><strong>【联系手机】<font color=\"#FF0000\">13987103083</font></strong></td>\n\r            <td><strong>【联系地址】云南印象城99号康辉旅行社404室</strong></td>\n\r          </tr>\n\r          <tr>\n\r            <td><strong>【客服QQ】<a href=\"tencent://message/?uin=308139815&Site=www.cct008.com&Menu=yes\" target=_self>308139815</a></strong></td>\n\r            <td><strong>【企业邮箱】<a href=\"mailto:woaiynly@126.com\" target=\"_self\">kumingkanghui@163.com</a></strong></td>\n\r          </tr>\n\r        </table></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_3.AddAD(objAD);

ZoneAD_3.Show();

