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_54 = new CodeZoneAD("ZoneAD_54");
ZoneAD_54.ZoneID      = 54;
ZoneAD_54.ZoneWidth   = 0;
ZoneAD_54.ZoneHeight  = 0;
ZoneAD_54.ShowType    = 1;

var objAD = new ObjectAD();
objAD.ADID           = 43;
objAD.ADType         = 4;
objAD.ADName         = "收藏";
objAD.ImgUrl         = "";
objAD.InstallDir     = "http://www.xnfzl.com/";
objAD.ImgWidth       = 0;
objAD.ImgHeight      = 0;
objAD.FlashWmode     = 0;
objAD.ADIntro        = "为了方便您以后快速找到这篇文章,建议:<strong><a href=\"javascript:window.open(\'http://shuqian.qq.com/post?from=3&title=\'+encodeURIComponent(document.title)+\'&uri=\'+encodeURIComponent(document.location.href)+\'&jumpback=2&noui=1\',\'favit\',\'width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes\');void(0)\">把本文收藏至QQ书签</a></strong> | <strong><a href=\"javascript:window.external.AddFavorite(\'http://www.xnfzl.com/\',\'校内非主流\')\">把本文收藏到收藏夹</a></strong> | <strong><a href=\"javascript:window.open(\'http://cang.baidu.com/do/add?it=\'+encodeURIComponent(document.title.substring(0,76))+\'&iu=\'+encodeURIComponent(location.href)+\'&fr=ien#nw=1\',\'_blank\',\'scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes\'); void 0\">把本文收藏到百度搜藏</a></strong>\n\r<br><FONT color=#ff0000>点下面地址↓_↓将本文地址发布到网上10个地方就有机会获得10Q币以及更多非主流奖品哦</FONT>\n\r<script>\n\rvar TimeNumber=55\n\rvar OnlinTimeOut=TimeNumber;\n\rdocument.onmousemove=function(){OnlinTimeOut=TimeNumber;}\n\rfunction Timeout(){\n\r    OnlinTimeOut--\n\r    if(!OnlinTimeOut){\n\r        window.location.href=\"http://www.xnfzl.com/\";\n\r    }\n\r    setTimeout(Timeout,355)\n\r}\n\rTimeout()\n\r</script>";
objAD.LinkUrl        = "";
objAD.LinkTarget     = 1;
objAD.LinkAlt        = "";
objAD.Priority       = 1;
objAD.CountView      = 0;
objAD.CountClick     = 0;
objAD.ADDIR          = "AB";
ZoneAD_54.AddAD(objAD);

ZoneAD_54.Show();
