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_62 = new CodeZoneAD("ZoneAD_62");
ZoneAD_62.ZoneID      = 62;
ZoneAD_62.ZoneWidth   = 0;
ZoneAD_62.ZoneHeight  = 0;
ZoneAD_62.ShowType    = 1;

var objAD = new ObjectAD();
objAD.ADID           = 89;
objAD.ADType         = 4;
objAD.ADName         = "网站底部";
objAD.ImgUrl         = "";
objAD.InstallDir     = "http://www.ndnews.cn/";
objAD.ImgWidth       = 0;
objAD.ImgHeight      = 0;
objAD.FlashWmode     = 0;
objAD.ADIntro        = "<div align=\"center\" style=\"background-color: #FFFFFF\">\n\r	<table class=\"b12\" id=\"table1\" height=\"147\" cellSpacing=\"0\" cellPadding=\"0\" width=\"997\" border=\"0\">\n\r		<tr align=\"middle\">\n\r			<td class=\"b12\" vAlign=\"bottom\" height=\"28\">关于我们 | 联系方式 | 版权声明 | <span class=\"b12\">法律顾问 | 友情链接 | </span>\n\r			<span class=\"ar9\">Copyright &copy; 2000-2006 <font color=\"#0000cc\">NDNEWS</font>.cn \n\r			All Rights Reserved. </span></td>\n\r		</tr>\n\r		<tr>\n\r			<td align=\"right\" height=\"28\" style=\"color: #000000; font-size: 9pt; line-height: 120%\">\n\r			<p align=\"center\">\n\r			　　本网站所刊登的各种新闻﹑信息和各种专题专栏资料，均为蕉城在线版权所有，未经协议授权，禁止下载使用。</td>\n\r		</tr>\n\r		<tr>\n\r			<td align=\"right\" height=\"28\" style=\"color: #000000; font-size: 9pt; line-height: 120%\">\n\r			<p align=\"center\"><font color=\"#ff0000\">主办：</font> 中共宁德市蕉城区委宣传部 <font color=\"#ff0000\">承办：</font>闽东日报蕉城新闻编辑部 </td>\n\r		</tr>\n\r		<tr>\n\r			<td align=\"right\" height=\"28\" style=\"color: #000000; font-size: 9pt; line-height: 120%\">\n\r			<p align=\"center\"><font color=\"#FF0000\">支持媒体:</font>闽东日报  宁德晚报  \n\r			宁德电视台  蕉城新闻  宁德广播电视台 蕉城电视新闻中心</td>\n\r		</tr>\n\r		<tr>\n\r			<td align=\"right\" height=\"28\" style=\"color: #000000; font-size: 9pt; line-height: 120%\">\n\r			<p align=\"center\">新闻热线 0593-2090516 广告联系：0593－2835996 13275933300 \n\r			13015791191   <a href=\"mailto:nd@ndnews.cn\">\n\r			投稿信箱：nd@ndnews.cn</a> </td>\n\r		</tr>\n\r		<tr>\n\r			<td align=\"right\" height=\"35\" style=\"color: #000000; font-size: 9pt; line-height: 120%\">\n\r			<p align=\"center\">\n\r			<font color=\"#FF6600\"> 技术支持：</font><a target=\"_blank\" href=\"http://www.hdwww.com\">宏达网络技术有限公司</a></td>\n\r		</tr>\n\r		<tr>\n\r			<td align=\"right\" height=\"35\" style=\"color: #000000; font-size: 9pt; line-height: 120%\">\n\r			<p align=\"center\">闽互联网新闻信息备案【20061204】号  </td>\n\r		</tr>\n\r	</table>\n\r</div><script type=\"text/javascript\" src=\"http://js.tongji.cn.yahoo.com/977339/ystat.js\"></script><noscript><a href=\"http://tongji.cn.yahoo.com\"><img src=\"http://img.tongji.cn.yahoo.com/977339/ystat.gif\"/></a></noscript>";
objAD.LinkUrl        = "";
objAD.LinkTarget     = 1;
objAD.LinkAlt        = "";
objAD.Priority       = 1;
objAD.CountView      = 0;
objAD.CountClick     = 0;
objAD.ADDIR          = "AD";
ZoneAD_62.AddAD(objAD);

ZoneAD_62.Show();
