﻿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       = "";
  this.OverdueDate = "";
}

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) {
  var date = new Date();
  var getdate = date.getFullYear() + "/" + (date.getMonth() + 1) + "/" + date.getDate();
  var today = new Date(getdate);
  var overdueDate = new Date(_AD.OverdueDate);
  if(today <= overdueDate)
  {
    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_2=new CodeZoneAD("ZoneAD_2");var objAD = new ObjectAD();
objAD.ADID= 2;objAD.ADType= 4;objAD.ADName= "53kf";objAD.ImgUrl= "";objAD.ImgWidth       = 0;objAD.ImgHeight      = 0;objAD.FlashWmode     = 0;objAD.ADIntro ="<script type=\"text/javascript\">\r\nfunction adFloater(id,content){\r\n	document.write(\'<DIV id=\'+id+\' style=\"position:absolute;\">\'+content+\'</DIV>\');\r\n}\r\nfunction closeBanner(){\r\n	document.getElementById(\"floatAd\").style.display=\"none\";\r\n}\r\nadFloater(\'floatAd\',\'<table cellpadding=\"0\" cellspacing=\"0\" width=\"133\" height=\"184\" style=\"font-size:12px;background:url(http://www.mymywo.com/slfimg/qqol.gif) no-repeat;\"><tr height=\"27\"><td></td></tr><tr height=\"28\"><td style=\"padding-left:40px;\"><a href=tencent://message/?uin=877147>麦麦窝客服一</a></td></tr><tr height=\"28\"><td style=\"padding-left:40px;\"><a href=tencent://message/?uin=877147>麦麦窝客服二</a></td></tr><tr height=\"28\"><td style=\"padding-left:40px;\"><a href=tencent://message/?uin=877147>麦麦窝客服三</a></td></tr><tr height=\"28\"><td style=\"padding-left:40px;\"><a href=tencent://message/?uin=877147>麦麦窝客服四</a></td></tr><tr height=\"45\"><td></td></tr></table>\');\r\nvar stmnGAP = 185; // 初试时候距屏幕顶端的高度；\r\nvar stmnScrollSpeed = 5; // 移动的速度；\r\nvar stmnTimer;\r\nvar stmnStartPoint, stmnEndPoint, stmnRefreshTimer;\r\nfunction RefreshfloatDiv()\r\n{\r\n	var tmpAd=document.getElementById(\"floatAd\");\r\n	stmnStartPoint = parseInt(tmpAd.style.top, 10);\r\n	if(navigator.appVersion.indexOf(\"Chrome\")==-1){\r\n		stmnEndPoint =document.documentElement.scrollTop+ stmnGAP;\r\n	}else{\r\n		stmnEndPoint =document.body.scrollTop+ stmnGAP;	\r\n	}\r\n	if ( stmnStartPoint != stmnEndPoint ) {\r\n		stmnScrollAmount = Math.ceil( Math.abs( stmnEndPoint - stmnStartPoint ) / 15 );\r\n		tmpAd.style.top = (parseInt(tmpAd.style.top, 10) + ( ( stmnEndPoint<stmnStartPoint ) ? -stmnScrollAmount : stmnScrollAmount ))+\"px\";\r\n	}\r\n	stmnTimer = setTimeout (\"RefreshfloatDiv();\",stmnScrollSpeed);\r\n}\r\nvar myAd=document.getElementById(\"floatAd\");\r\nmyAd.style.top =stmnGAP+\"px\";\r\nmyAd.style.left =(document.documentElement.clientWidth-133)+\"px\";\r\nRefreshfloatDiv();\r\nfunction qqchat(qq){\r\n	var openurl=\"tencent://message/?uin=\"+qq+\"&Menu=yes\";\r\n	window.location.href=openurl;\r\n	return false;\r\n}\r\nfunction wwchat(ww){\r\n	var openurl=\"http://amos.im.alisoft.com/msg.aw?v=2&uid=\"+ww+\"&site=cntaobao&s=1&charset=utf-8\";	\r\n	window.location=openurl;\r\n	return false;\r\n}\r\nwindow.onresize=function(){\r\n	myAd.style.left =(document.documentElement.clientWidth-133)+\"px\";\r\n}\r\n</script>";objAD.LinkUrl        = "";objAD.LinkTarget     = 0;objAD.LinkAlt        = "";objAD.Priority       = 1;objAD.CountView      = false;objAD.CountClick     = false;objAD.OverdueDate    = "2012/05/18";objAD.InstallDir     = "/";objAD.ADDIR= "IAA";ZoneAD_2.AddAD(objAD);ZoneAD_2.ZoneID=2;ZoneAD_2.ZoneWidth=468;ZoneAD_2.ZoneHeight=60;ZoneAD_2.ShowType=1;ZoneAD_2.Show();
