
			//<![CDATA[
			/*
			参数说明:
			adLeftSrc:引用地址
			adLeftFlash:浮动类型---flash,js,txt,img(默认为空时表示图片),txt表示直接的HTML代码,包括框架.
			adLeftHref:链接地址
			adLeftWidth:浮动对象的宽度
			adLeftHeight:浮动对象的高度
			adLeftTop:浮动层位于底部的相对高度,即定位浮动层显示的高度位置.
			Right项一样.
			marginTop:浮动层的上边距
			marginLeft:浮动层的左边距
			navUserAgent:浏览器类型
			*/
			var adLeftWidth = 80;
			var adLeftHeight = 80;
			var adLeftTop = 750;
			var adRightWidth = 83;
			var adRightHeight = 112;
			var adRightTop = 400;
			var marginTop = 90;
			var marginLeft = 70;
			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) {
						document.getElementById("QQBox").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("QQBox").style.left = ((document.body.clientWidth > document.documentElement.clientWidth)?document.body.clientWidth:document.documentElement.clientWidth) - adRightWidth - marginLeft + 'px';
				}
				else{
						document.getElementById("QQBox").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("QQBox").style.left = ((document.documentElement.clientWidth == 0)?document.body.clientWidth:document.documentElement.clientWidth) - adRightWidth - marginLeft + 'px';
				}
			}
			function closeQQ()
			{
				var Img = document.getElementById("QQBox");
				Img.style.display = "none";
			}
			
			load();
			//]]>
