function runCode()  //定义一个运行代码的函数，
{
  var code=event.srcElement.parentElement.children[0].value;//即要运行的代码。
  var newwin=window.open('','','');  //打开一个窗口并赋给变量newwin。
  newwin.opener = null // 防止代码对论谈页面修改
  newwin.document.write(code);  //向这个打开的窗口中写入代码code，这样就实现了运行代码功能。
  newwin.document.close();
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_showHideLayers() { //v3.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
    obj.visibility=v; }
}

// AD Banner object
function ADBanner(){
  this.htmlcode  = "";// Non image banner's html code
  this.href      = "";// Link's href attrib
  this.imgsrc    = "";// Image's src attrib
  this.imgwidth  = "";// Image's width attrib
  this.imgheight = "";// Image's height attrib
  this.imgalt    = "";// Image's alt attrib
  this.imgborder = "";// Image's border attrib
  this.weight    = 1;// Banner's show weight
  this.place     = 1// Banner's place
  this.type      = 1;// Banner's type
}

// Make Banner objects array
function CreatBanners(aBanners, aNum){
  for( var i=0; i<aNum; i++ ){
    aBanners[i] = new ADBanner();
  }
}

// Show banner
function showbanner(aPlace, aType, aBannerID)
{
  var amount = ADBanners.length;
  var includeList = new Array(amount);

  if (!document.usedBanners){
    document.usedBanners = new Array(amount);
for (var i=0; i<amount; i++)
      document.usedBanners[i] = -1;
  }
 
  var usedList = document.usedBanners;

  if (arguments.length == 2){
    var j = 0;
    var sum = 0;
for(var i=0; i<amount; i++){
if (ADBanners[i].place == aPlace && ADBanners[i].type == aType){
if (usedList[i] != i){
  includeList[j] = i;
      j++;
          sum = sum + ADBanners[i].weight;
    }
  }
 }
    if (sum <= 0)
  return;
    var rndNum = Math.round(Math.random() * sum);

    i = 0;
    j = 0;
    while (true) {
      j = j + ADBanners[includeList[i]].weight;
      if (j >= rndNum)
        break;
      i++;
    }

    i = includeList[i];
  }
  else{
if (aBannerID >= 0 && aBannerID < amount)
      i = aBannerID;
else
  return;
  }

  usedList[i] = i;

  if (ADBanners[i].htmlcode == "")
    document.write('<A HREF="'+ ADBanners[i].href +'" target=_blank><IMG SRC="'+ ADBanners[i].imgsrc +'" WIDTH="'+ ADBanners[i].imgwidth +'" HEIGHT="'+ ADBanners[i].imgheight +'" ALT="'+ ADBanners[i].imgalt +'" BORDER="'+ ADBanners[i].imgborder +'"></A>');
  else
    document.write(ADBanners[i].htmlcode);
}

var ADBanners = new Array();

CreatBanners(ADBanners, 50);

ADBanners[0].imgsrc    = "gg/pstxg/txglogo.gif";
ADBanners[0].href = "../www.pstxg.com/default.htm";
ADBanners[0].imgwidth  = "88";
ADBanners[0].imgheight = "31";
ADBanners[0].imgalt    = "图像谷";
ADBanners[0].weight    = 10;
ADBanners[0].place= 1;
ADBanners[0].type = 1;

ADBanners[1].imgsrc    = "gg/junsea/logo.gif";
ADBanners[1].href = "../www.junsea.com/default.htm";
ADBanners[1].imgwidth  = "88";
ADBanners[1].imgheight = "31";
ADBanners[1].imgalt    = "六月海";
ADBanners[1].weight    = 10;
ADBanners[1].place= 1;
ADBanners[1].type = 1;

ADBanners[2].imgsrc    = "gg/mobiusclub/logo.gif";
ADBanners[2].href = "../www.mobiusclub.com/default.htm";
ADBanners[2].imgwidth  = "88";
ADBanners[2].imgheight = "31";
ADBanners[2].imgalt    = "莫比斯俱乐部";
ADBanners[2].weight    = 10;
ADBanners[2].place= 1;
ADBanners[2].type = 1;

ADBanners[3].imgsrc    = "gg/chinavisual/cv_logo.gif";
ADBanners[3].href = "../www.chinavisual.com/default.htm";
ADBanners[3].imgwidth  = "88";
ADBanners[3].imgheight = "31";
ADBanners[3].imgalt    = "视觉中国";
ADBanners[3].weight    = 10;
ADBanners[3].place= 1;
ADBanners[3].type = 1;

ADBanners[4].imgsrc    = "gg/huya/huya_logo.gif";
ADBanners[4].href = "../www.huya.net/default.htm";
ADBanners[4].imgwidth  = "88";
ADBanners[4].imgheight = "31";
ADBanners[4].imgalt    = "huya";
ADBanners[4].weight    = 10;
ADBanners[4].place= 1;
ADBanners[4].type = 1;

ADBanners[5].imgsrc    = "gg/flashsky/logo.gif";
ADBanners[5].href = "../www.flashsky.com/default.htm";
ADBanners[5].imgwidth  = "88";
ADBanners[5].imgheight = "31";
ADBanners[5].imgalt    = "闪客天地";
ADBanners[5].weight    = 10;
ADBanners[5].place= 1;
ADBanners[5].type = 1;

ADBanners[6].imgsrc    = "gg/flashempire/flashempirelogo.gif";
ADBanners[6].href = "../www.flashempire.com/default.htm";
ADBanners[6].imgwidth  = "88";
ADBanners[6].imgheight = "31";
ADBanners[6].imgalt    = "闪客帝国";
ADBanners[6].weight    = 10;
ADBanners[6].place= 1;
ADBanners[6].type = 1;

ADBanners[7].imgsrc    = "gg/fwcn/fire.gif";
ADBanners[7].href = "../www.fwcn.com/default.htm";
ADBanners[7].imgwidth  = "88";
ADBanners[7].imgheight = "31";
ADBanners[7].imgalt    = "点燃灵感";
ADBanners[7].weight    = 10;
ADBanners[7].place= 1;
ADBanners[7].type = 1;

ADBanners[8].imgsrc    = "gg/goeway/goeway.gif";
ADBanners[8].href = "../www.goeway.com/default.htm";
ADBanners[8].imgwidth  = "88";
ADBanners[8].imgheight = "31";
ADBanners[8].imgalt    = "goEway.com - 从不懂上网，到上网指南";
ADBanners[8].weight    = 10;
ADBanners[8].place= 1;
ADBanners[8].type = 1;

ADBanners[9].imgsrc    = "gg/3dapple/logo2.gif";
ADBanners[9].href = "../www.3dapple.com/default.htm";
ADBanners[9].imgwidth  = "88";
ADBanners[9].imgheight = "31";
ADBanners[9].imgalt    = "3dapple资源站";
ADBanners[9].weight    = 10;
ADBanners[9].place= 1;
ADBanners[9].type = 1;

ADBanners[10].imgsrc    = "gg/lhcdg/wwwlhcdgnet.gif";
ADBanners[10].href = "../www.lhcdg.net/default.htm";
ADBanners[10].imgwidth  = "88";
ADBanners[10].imgheight = "31";
ADBanners[10].imgalt    = "三生有幸";
ADBanners[10].weight    = 10;
ADBanners[10].place= 1;
ADBanners[10].type = 1;

ADBanners[11].imgsrc    = "gg/pages/logo.gif";
ADBanners[11].href = "../pages.blueidea.com/default.htm";
ADBanners[11].imgwidth  = "88";
ADBanners[11].imgheight = "31";
ADBanners[11].imgalt    = "pages.think";
ADBanners[11].weight    = 10;
ADBanners[11].place= 1;
ADBanners[11].type = 1;

ADBanners[12].imgsrc    = "gg/popunet/popunet.gif";
ADBanners[12].href = "../www.popunet.com/default.htm";
ADBanners[12].imgwidth  = "88";
ADBanners[12].imgheight = "31";
ADBanners[12].imgalt    = "大众网络报";
ADBanners[12].weight    = 10;
ADBanners[12].place= 1;
ADBanners[12].type = 1;

ADBanners[13].imgsrc    = "gg/themex/logo.gif";
ADBanners[13].href = "../www.themex.net/default.htm";
ADBanners[13].imgwidth  = "88";
ADBanners[13].imgheight = "31";
ADBanners[13].imgalt    = "[ThemeX.net ::: 极限主题]";
ADBanners[13].weight    = 10;
ADBanners[13].place= 1;
ADBanners[13].type = 1;

ADBanners[14].imgsrc    = "gg/sophoto/sophoto.gif";
ADBanners[14].href = "../www.sophoto.cn/default.htm";
ADBanners[14].imgwidth  = "88";
ADBanners[14].imgheight = "31";
ADBanners[14].imgalt    = "搜图客";
ADBanners[14].weight    = 10;
ADBanners[14].place= 1;
ADBanners[14].type = 1;

ADBanners[15].imgsrc    = "gg/scw/logo.gif";
ADBanners[15].href = "../www.sucaiw.com/default.htm";
ADBanners[15].imgwidth  = "88";
ADBanners[15].imgheight = "31";
ADBanners[15].imgalt    = "素材精品屋";
ADBanners[15].weight    = 10;
ADBanners[15].place= 1;
ADBanners[15].type = 1;

ADBanners[16].imgsrc    = "gg/topidea/topidealogo.jpg";
ADBanners[16].href = "../www.topidea.org/default.htm";
ADBanners[16].imgwidth  = "88";
ADBanners[16].imgheight = "31";
ADBanners[16].imgalt    = "头脑风暴";
ADBanners[16].weight    = 10;
ADBanners[16].place= 1;
ADBanners[16].type = 1;

ADBanners[17].imgsrc    = "gg/websheji/logo.gif";
ADBanners[17].href = "../www.websheji.com/default.htm";
ADBanners[17].imgwidth  = "88";
ADBanners[17].imgheight = "31";
ADBanners[17].imgalt    = "websheji";
ADBanners[17].weight    = 10;
ADBanners[17].place= 1;
ADBanners[17].type = 1;

ADBanners[18].imgsrc    = "gg/blogcn/ad1.gif";
ADBanners[18].href = "../www.blogcn.com/signupv3.asp";
ADBanners[18].imgwidth  = "120";
ADBanners[18].imgheight = "60";
ADBanners[18].imgalt    = "Blogcn.com";
ADBanners[18].weight    = 10;
ADBanners[18].place= 3;
ADBanners[18].type = 3;

ADBanners[19].imgsrc    = "gg/idc2008/208X33.gif";
ADBanners[19].href = "../www.kxok.net/default.htm";
ADBanners[19].imgwidth  = "208";
ADBanners[19].imgheight = "32";
ADBanners[19].imgalt    = "虚拟主机，主机托管";
ADBanners[19].weight    = 1;
ADBanners[19].place= 4;
ADBanners[19].type = 4;

ADBanners[20].imgsrc    = "gg/designers/snap016.gif";
ADBanners[20].href = "../www.flashsoho.com/default.htm";
ADBanners[20].imgwidth  = "533";
ADBanners[20].imgheight = "104";
ADBanners[20].imgalt    = "通信，我在感受 flash 大赛";
ADBanners[20].weight    = 10;
ADBanners[20].place= 2;
ADBanners[20].type = 2;

ADBanners[21].imgsrc    = "gg/idc2008/750X802.gif";
ADBanners[21].href = "../www.kxok.net/default.htm";
ADBanners[21].imgwidth  = "750";
ADBanners[21].imgheight = "80";
ADBanners[21].imgalt    = "虚拟主机，主机托管";
ADBanners[21].weight    = 20;
ADBanners[21].place= 6;
ADBanners[21].type = 6;

ADBanners[22].htmlcode  = '<a href="#" target=_blank><font color=red>idc2008.com 急速空间 299元 = 300M 空间 + 送域名 + 邮箱</font></a>';
ADBanners[22].weight    = 5;
ADBanners[22].place= 7;
ADBanners[22].type = 7;

ADBanners[23].htmlcode  = '<a href="#" target=_blank><font color=red>中资源 350元=域名+200M主机+50M邮箱+20个二级域名</font></a>';
ADBanners[23].weight    = 5;
ADBanners[23].place= 7;
ADBanners[23].type = 7;

ADBanners[24].htmlcode  = '<IFRAME MARGINHEIGHT=0 MARGINWIDTH=0 FRAMEBORDER=0 WIDTH=120 HEIGHT=60 SCROLLING=NO SRC="../casting9.allyes.com/main/adfshow@user=AllyesNetwork|benq_163flash|blueidea_button12060&db=casting9&border=0&local=yes"><SCRIPT LANGUAGE="JavaScript1.1" SRC="../casting9.allyes.com/main/adfshow@user=AllyesNetwork|benq_163flash|blueidea_button12060&db=casting9&local=yes&js=on"></SCRIPT><NOSCRIPT><A HREF="../casting9.allyes.com/main/adfclick@user=AllyesNetwork|benq_163flash|blueidea_button12060&db=casting9"><IMG SRC="../casting9.allyes.com/main/adfshow@user=AllyesNetwork|benq_163flash|blueidea_button12060&db=casting9" WIDTH=120 HEIGHT=60 BORDER=0></a></NOSCRIPT></IFRAME>';
ADBanners[24].weight    = 10;
ADBanners[24].place= 3;
ADBanners[24].type = 3;

ADBanners[25].htmlcode  = '<a href=bbs/NewsDetail.asp@id=1186335><font color=red>经典Flash MX 2004教程全集</font></a>';
ADBanners[25].weight    = 10;
ADBanners[25].place= 10;
ADBanners[25].type = 7;

ADBanners[26].htmlcode  = '<a target=_blank href=common/searchbykey.asp@keyword=2004><font color=red>本站推出 Studio MX 2004 专题</font></a>';
ADBanners[26].weight    = 10;
ADBanners[26].place= 10;
ADBanners[26].type = 7;

ADBanners[27].imgsrc    = "gg/ccjsj/c208X33.gif";
ADBanners[27].href = "../www.kxok.net/default.htm";
ADBanners[27].imgwidth  = "208";
ADBanners[27].imgheight = "32";
ADBanners[27].imgalt    = "计算机学校";
ADBanners[27].weight    = 1;
ADBanners[27].place= 4;
ADBanners[27].type = 4;

ADBanners[28].imgsrc    = "gg/ccjsj/2.jpg";
ADBanners[28].href = "../www.kxok.net/default.htm";
ADBanners[28].imgwidth  = "760";
ADBanners[28].imgheight = "85";
ADBanners[28].imgalt    = "计算机学校";
ADBanners[28].weight    = 10;
ADBanners[28].place= 6;
ADBanners[28].type = 6;

ADBanners[29].htmlcode  = '<IFRAME MARGINHEIGHT=0 MARGINWIDTH=0 FRAMEBORDER=0 WIDTH=206 HEIGHT=33 SCROLLING=NO SRC="../casting9.allyes.com/main/adfshow@user=AllyesNetwork|benq_163flash|blueidea_20633&db=casting9&border=0&local=yes"><SCRIPT LANGUAGE="JavaScript1.1" SRC="../casting9.allyes.com/main/adfshow@user=AllyesNetwork|benq_163flash|blueidea_20633&db=casting9&local=yes&js=on"></SCRIPT><NOSCRIPT><A HREF="../casting9.allyes.com/main/adfclick@user=AllyesNetwork|benq_163flash|blueidea_20633&db=casting9"><IMG SRC="../casting9.allyes.com/main/adfshow@user=AllyesNetwork|benq_163flash|blueidea_20633&db=casting9" WIDTH=206 HEIGHT=33 BORDER=0></a></NOSCRIPT></IFRAME>';
ADBanners[29].weight    = 30;
ADBanners[29].place= 4;
ADBanners[29].type = 4;

ADBanners[30].htmlcode  = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="../download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="468" height="60"><param name=movie value="gg/flash8/pepsi46860.swf"><PARAM NAME=wmode VALUE=opaque><param name=quality value=high><embed src="gg/flash8/pepsi46860.swf" quality=high pluginspage="../www.macromedia.com/shockwave/download/index.cgi@P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="468" height="60"></embed> </object>';
ADBanners[30].weight    = 10;
ADBanners[30].place= 5;
ADBanners[30].type = 5;

ADBanners[31].imgsrc    = "gg/94cool/logo.gif";
ADBanners[31].href = "../www.94cool.org/default.htm";
ADBanners[31].imgwidth  = "88";
ADBanners[31].imgheight = "31";
ADBanners[31].imgalt    = "94cool";
ADBanners[31].weight    = 10;
ADBanners[31].place= 1;
ADBanners[31].type = 1;

ADBanners[32].imgsrc    = "gg/flash8/logo.gif";
ADBanners[32].href = "../www.flash8.net/default.htm";
ADBanners[32].imgwidth  = "88";
ADBanners[32].imgheight = "31";
ADBanners[32].imgalt    = "闪吧";
ADBanners[32].weight    = 10;
ADBanners[32].place= 1;
ADBanners[32].type = 1;

ADBanners[33].imgsrc    = "gg/5dmedia/5dmedia.gif";
ADBanners[33].href = "../www.5dmedia.com/default.htm";
ADBanners[33].imgwidth  = "88";
ADBanners[33].imgheight = "31";
ADBanners[33].imgalt    = "5D多媒体";
ADBanners[33].weight    = 10;
ADBanners[33].place= 1;
ADBanners[33].type = 1;

ADBanners[34].imgsrc    = "gg/pconline/pconline.gif";
ADBanners[34].href = "../www.pconline.com.cn/pcedu/default.htm";
ADBanners[34].imgwidth  = "88";
ADBanners[34].imgheight = "31";
ADBanners[34].imgalt    = "PConline网络学院";
ADBanners[34].weight    = 20;
ADBanners[34].place= 1;
ADBanners[34].type = 1;

ADBanners[35].imgsrc    = "gg/colorbird/colorbird_3.gif";
ADBanners[35].href = "../www.colorbird.com/default.htm";
ADBanners[35].imgwidth  = "88";
ADBanners[35].imgheight = "31";
ADBanners[35].imgalt    = "七色鸟设计空间";
ADBanners[35].weight    = 10;
ADBanners[35].place= 1;
ADBanners[35].type = 1;

ADBanners[36].imgsrc    = "gg/deskcity/deskcity.gif";
ADBanners[36].href = "../www.deskcity.com/default.htm";
ADBanners[36].imgwidth  = "88";
ADBanners[36].imgheight = "31";
ADBanners[36].imgalt    = "桌面城市";
ADBanners[36].weight    = 10;
ADBanners[36].place= 1;
ADBanners[36].type = 1;

ADBanners[37].imgsrc    = "gg/szdesign/chinadu_88_31_logo.gif";
ADBanners[37].href = "../www.chinadu.org/default.htm";
ADBanners[37].imgwidth  = "88";
ADBanners[37].imgheight = "31";
ADBanners[37].imgalt    = "欢迎来到设计联盟";
ADBanners[37].weight    = 10;
ADBanners[37].place= 1;
ADBanners[37].type = 1;

ADBanners[38].imgsrc    = "gg/yesky/yeskylogo.gif";
ADBanners[38].href = "../homepage.yesky.com/default.htm";
ADBanners[38].imgwidth  = "88";
ADBanners[38].imgheight = "31";
ADBanners[38].imgalt    = "天极网页陶吧";
ADBanners[38].weight    = 10;
ADBanners[38].place= 1;
ADBanners[38].type = 1;

ADBanners[39].imgsrc    = "gg/aougu/aougu.gif";
ADBanners[39].href = "../www.aougu.com/default.htm";
ADBanners[39].imgwidth  = "88";
ADBanners[39].imgheight = "31";
ADBanners[39].imgalt    = "奥古多媒体";
ADBanners[39].weight    = 10;
ADBanners[39].place= 1;
ADBanners[39].type = 1;

ADBanners[40].imgsrc    = "gg/chinavfx/vfxlogo.gif";
ADBanners[40].href = "../www.chinavfx.com/default.htm";
ADBanners[40].imgwidth  = "88";
ADBanners[40].imgheight = "31";
ADBanners[40].imgalt    = "CHINA-VFX";
ADBanners[40].weight    = 10;
ADBanners[40].place= 1;
ADBanners[40].type = 1;

ADBanners[41].imgsrc    = "gg/china/tech_logo.gif";
ADBanners[41].href = "../tech.china.com/default.htm";
ADBanners[41].imgwidth  = "88";
ADBanners[41].imgheight = "31";
ADBanners[41].imgalt    = "中华网科技频道";
ADBanners[41].weight    = 10;
ADBanners[41].place= 1;
ADBanners[41].type = 1;

ADBanners[42].imgsrc    = "gg/huachu/huachu.gif";
ADBanners[42].href = "../www.huachu.com.cn/default.htm";
ADBanners[42].imgwidth  = "88";
ADBanners[42].imgheight = "31";
ADBanners[42].imgalt    = "华储网";
ADBanners[42].weight    = 10;
ADBanners[42].place= 1;
ADBanners[42].type = 1;

ADBanners[43].imgsrc    = "gg/7yue/logo.gif";
ADBanners[43].href = "../www.7yue.com/default.htm";
ADBanners[43].imgwidth  = "88";
ADBanners[43].imgheight = "31";
ADBanners[43].imgalt    = "7yue";
ADBanners[43].weight    = 10;
ADBanners[43].place= 1;
ADBanners[43].type = 1;

ADBanners[44].imgsrc    = "gg/blogcn/logo.gif";
ADBanners[44].href = "#";
ADBanners[44].imgwidth  = "88";
ADBanners[44].imgheight = "31";
ADBanners[44].imgalt    = "Blogcn.com";
ADBanners[44].weight    = 10;
ADBanners[44].place= 1;
ADBanners[44].type = 1;

ADBanners[45].imgsrc    = "gg/easy121/logo.gif";
ADBanners[45].href = "../www.easy121.com/default.htm";
ADBanners[45].imgwidth  = "88";
ADBanners[45].imgheight = "31";
ADBanners[45].imgalt    = "鸡蛋工作室";
ADBanners[45].weight    = 10;
ADBanners[45].place= 1;
ADBanners[45].type = 1;

ADBanners[46].imgsrc    = "gg/52flash/logo.gif";
ADBanners[46].href = "../www.52flash.net/default.htm";
ADBanners[46].imgwidth  = "88";
ADBanners[46].imgheight = "31";
ADBanners[46].imgalt    = "我爱 flash";
ADBanners[46].weight    = 10;
ADBanners[46].place= 1;
ADBanners[46].type = 1;

ADBanners[47].imgsrc    = "gg/chinaui/chinaui_logo.gif";
ADBanners[47].href = "../www.chinaui.com/default.htm";
ADBanners[47].imgwidth  = "88";
ADBanners[47].imgheight = "31";
ADBanners[47].imgalt    = "chinaui";
ADBanners[47].weight    = 10;
ADBanners[47].place= 1;
ADBanners[47].type = 1;

ADBanners[48].htmlcode  = '<script src=scrollup.js id=js_scroll_content></script><script src=js/scroll.js></script>';
ADBanners[48].weight    = 20;
ADBanners[48].place= 7;
ADBanners[48].type = 7;

ADBanners[49].htmlcode  = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="../download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="750" height="80"><param name=movie value="gg/donggua/newbanner.swf"><PARAM NAME=wmode VALUE=opaque><param name=quality value=high><embed src="gg/donggua/newbanner.swf" quality=high pluginspage="../www.macromedia.com/shockwave/download/index.cgi@P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="750" height="80"></embed> </object>';
ADBanners[49].weight    = 10;
ADBanners[49].place= 9;
ADBanners[49].type = 6;

