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           = 1;
objAD.ADType         = 4;
objAD.ADName         = "内页上部广告";
objAD.ImgUrl         = "";
objAD.InstallDir     = "http://www.fomen123.com/";
objAD.ImgWidth       = 0;
objAD.ImgHeight      = 0;
objAD.FlashWmode     = 0;
objAD.ADIntro        = "<table width=\"100%\" border=\"0\" align=\"center\"> \n\r  \n\r  <tr>\n\r    <td height=\"20\" align=\"left\">  <strong><a href=\"http://www.fomen123.com/ganying/\" target=\"_blank\" ><font  size=\"2\">·学佛感应录汇总发布</font></a> <a href=\"http://www.fomen123.com/fo/new/bizhi/8599.html\" target=\"_blank\" ><font  size=\"2\" color=red>《快速学佛指引》</font></a></strong></td>\n\r    <td height=\"20\" align=\"left\"><strong><a href=\"http://www.fomen123.com/fo/pmxz/gsdd/7944.html \" target=\"_blank\" ><font size=\"2\" >·宣化上人解释“密宗”</font></a>  <a href=\"http://www.fomen123.com/fo/yinguo/\" target=\"_blank\" ><font size=\"2\">了解因果改变命运</font></a></strong></td>\n\r  </tr>\n\r  <tr>\n\r    <td height=\"20\" align=\"left\"><strong><a href=\"http://www.fomen123.com/fo/jingdian/xyjl/6783.html\" target=\"_blank\" ><font size=\"2\">·什么是法供养，为何法布施比财布施功德大</font></a></strong></td>\n\r    <td align=\"left\"><strong><a href=\"http://www.fomen123.com/fo/jingdian/xyjl/8605.html\" target=\"_blank\" ><font size=\"2\">·用布施成就我们的功德</font></a> <a href=\"http://www.fomen123.com/zhuomian.html\" target=\"_blank\" ><font size=\"2\" color=red>悉昙佛咒桌面下载</font></a></strong></td>\n\r  </tr>\n\r  <tr>\n\r    <td align=\"left\" height=\"20\"><strong><a href=\"http://www.fomen123.com/fo/dyjh/dyjh/8610.html\" target=\"_blank\" ><font size=\"2\" color=red>·不是只有念阿弥陀佛才能往生净土！</font></a></strong></td>\n\r    <td align=\"left\"><strong><font size=\"2\"><a href=\"http://www.fomen123.com/fo/xiao/\" target=\"_blank\"  ><font size=\"2\" >·孝顺供养父母福德无量</font></a> <a href=\"http://www.fomen123.com/fo/pmxz/gsdd/8007.html\" target=\"_blank\"  ><font size=\"2\" >远离外道典籍</font></a></strong></td>\n\r  </tr> \n\r</table>\n\r\n\r<table width=\"100%\" border=\"0\" align=\"center\">\n\r  <tr>\n\r    <td align=\"center\">\n\r	<input type=\"button\" value=\"现世得大财富大福报\" onClick=\"window.open(\'http://www.fomen123.com/fo/jingdian/yubao/8042.html\')\">\n\r</td><td align=\"center\">\n\r	<input type=\"button\" value=\"善巧方便积累无量功德\" onClick=\"window.open(\'http://www.fomen123.com/fo/huixiang/8076.html\')\"><td align=\"center\">\n\r	<input type=\"button\" value=\"助印佛经法宝一些建议\" onClick=\"window.open(\'http://www.fomen123.com/fo/dyjh/dyjh/8069.html\')\">\n\r</td>\n\r  </tr>\n\r\n\r</table>\n\r";
objAD.LinkUrl        = "";
objAD.LinkTarget     = 1;
objAD.LinkAlt        = "";
objAD.Priority       = 1;
objAD.CountView      = 0;
objAD.CountClick     = 0;
objAD.ADDIR          = "AD2006";
ZoneAD_4.AddAD(objAD);

ZoneAD_4.Show();
