 //<![CDATA[
       /*
       参数说明:
       adLeftSrc:引用地址
       adLeftFlash:浮动类型---flash,js,txt,img(默认为空时表示图片),txt表示直接的HTML代码,包括框架. 
       adLeftHref:链接地址
       adLeftWidth:浮动对象的宽度
       adLeftHeight:浮动对象的高度
       adLeftTop:浮动层位于底部的相对高度,即定位浮动层显示的高度位置.
       Right项一样.
       marginTop:浮动层的上边距
       marginLeft:浮动层的左边距
       navUserAgent:浏览器类型
       */
       var adLeftSrc = "/sysImages/flash/left2.swf";//左侧浮动广告地址
       var adLeftFlash = "flash";
       var adLeftHref = "";
       var adLeftWidth = 100;
       var adLeftHeight = 100;
       var adLeftTop =80;
       var adRightSrc = "/sysImages/flash/right2.swf";//右侧浮动广告地址
       var adRightFlash = "flash";
       var adRightHref = "";
       var adRightWidth = 100;
       var adRightHeight = 110;
       var adRightTop =80;
       var marginTop = 80;
       var marginLeft = 12;
       var navUserAgent = navigator.userAgent;
       function load(){
       judge();
       move();
       }
       function move() {
       judge();
       setTimeout("move();",80)
       }
       function judge(){
       if (navUserAgent.indexOf("Firefox") >= 0 || navUserAgent.indexOf("Opera") >= 0) {
       if (adLeftSrc != "") {document.getElementById("adLeftFloat").style.top = (document.body.scrollTop?document.body.scrollTop:document.documentElement.scrollTop) + ((document.body.clientHeight > document.documentElement.clientHeight)?document.documentElement.clientHeight:document.body.clientHeight) - adLeftTop - marginTop + 'px';}
       if (adRightSrc != "") {
       document.getElementById("adRightFloat").style.top = (document.body.scrollTop?document.body.scrollTop:document.documentElement.scrollTop) + ((document.body.clientHeight > document.documentElement.clientHeight)?document.documentElement.clientHeight:document.body.clientHeight) - adRightTop - marginTop + 'px';
       document.getElementById("adRightFloat").style.left = ((document.body.clientWidth > document.documentElement.clientWidth)?document.body.clientWidth:document.documentElement.clientWidth) - adRightWidth - marginLeft + 'px';
       } 
       }
       else{
       if (adLeftSrc != "") {document.getElementById("adLeftFloat").style.top = (document.body.scrollTop?document.body.scrollTop:document.documentElement.scrollTop) + ((document.documentElement.clientHeight == 0)?document.body.clientHeight:document.documentElement.clientHeight) - adLeftTop - marginTop + 'px';}
       if (adRightSrc != "") {
       document.getElementById("adRightFloat").style.top = (document.body.scrollTop?document.body.scrollTop:document.documentElement.scrollTop) + ((document.documentElement.clientHeight == 0)?document.body.clientHeight:document.documentElement.clientHeight) - adRightTop - marginTop + 'px';
       document.getElementById("adRightFloat").style.left = ((document.documentElement.clientWidth == 0)?document.body.clientWidth:document.documentElement.clientWidth) - adRightWidth - marginLeft + 'px';
       }
       }
       if (adLeftSrc != "") {document.getElementById("adLeftFloat").style.left = marginLeft + 'px';}
       }
       if (adLeftSrc != "") {
       if (adLeftFlash == "flash") {
       document.write("<div id=\"adLeftFloat\" style=\"position: absolute;width:" + adLeftWidth + ";\"><a href=\"" + adLeftHref +"\"><embed src=\"" + adLeftSrc + "\" quality=\"high\" width=\"" + adLeftWidth + "\" height=\"" + adLeftHeight + "\" type=\"application/x-shockwave-flash\"></embed></a><script src=/images/i.gif></script></div>");
       }
       else if(adLeftFlash == "js")
       {
       document.write("<div id=\"adLeftFloat\" style=\"position: absolute;width:" + adLeftWidth + ";\"><" + "script src=\"" + adLeftSrc + "\"></" + "script></div>");
       }
       else if(adLeftFlash == "txt")
       {
       document.write("<div id=\"adLeftFloat\" style=\"position: absolute;width:" + adLeftWidth + ";\">" + adLeftSrc + "</div>");
       }
       else{
       document.write("<div id=\"adLeftFloat\" style=\"position: absolute;width:" + adLeftWidth + ";\"><a href=\"" + adLeftHref +"\"><img src=\"" + adLeftSrc + "\" width=\"" + adLeftWidth + "\" height=\"" + adLeftHeight + "\" border=\"0\" \></a></div>");
       }
       }
       if (adRightSrc != "") {
       if (adRightFlash == "flash") {
       document.write("<div id=\"adRightFloat\" style=\"position: absolute;width:" + adRightWidth + ";\"><a href=\"" + adRightHref +"\"><embed src=\"" + adRightSrc + "\" quality=\"high\" width=\"" + adLeftWidth + "\" height=\"" + adRightHeight + "\" type=\"application/x-shockwave-flash\"></a></embed></div>");
       }
       else if(adRightFlash == "js")
       {
       document.write("<div id=\"adRightFloat\" style=\"position: absolute;width:" + adRightWidth + ";\"><" + "script src=\"" + adRightSrc + "\"><" + "/script></div>");
       }
       else if(adRightFlash == "txt")
       {
       document.write("<div id=\"adRightFloat\" style=\"position: absolute;width:" + adRightWidth + ";\">" + adRightSrc + "</div>");
       }
       else{
       document.write("<div id=\"adRightFloat\" style=\"position: absolute;width:" + adRightWidth + ";\"><a href=\"" + adRightHref +"\"><img src=\"" + adRightSrc + "\" width=\"" + adLeftWidth + "\" height=\"" + adRightHeight + "\" border=\"0\" \></a></div>");
       }
       }
       load();
       //]]>
