<!--
	var delta=0.15
	var collection;
	function floaters() {
		this.items	= [];
		this.addItem	= function(id,x,y,content)
				  {
					document.write('<DIV id='+id+' style="Z-INDEX: 10; POSITION: absolute;  width:80px; height:60px;left:'+(typeof(x)=='string'?eval(x):x)+';top:'+(typeof(y)=='string'?eval(y):y)+'">'+content+'</DIV>');
					
					var newItem				= {};
					newItem.object			= document.getElementById(id);
					newItem.x				= x;
					newItem.y				= y;

					this.items[this.items.length]		= newItem;
				  }
		this.play	= function()
				  {
					collection				= this.items
					setInterval('play()',10);
				  }
		}
		function play()
		{
			if(screen.width<=800)
			{
				for(var i=0;i<collection.length;i++)
				{
					collection[i].object.style.display	= 'none';
				}
				return;
			}
			for(var i=0;i<collection.length;i++)
			{
				var followObj		= collection[i].object;
				var followObj_x		= (typeof(collection[i].x)=='string'?eval(collection[i].x):collection[i].x);
				var followObj_y		= (typeof(collection[i].y)=='string'?eval(collection[i].y):collection[i].y);

				

				if(followObj.offsetTop!=(document.documentElement.scrollTop+followObj_y)) {
					var dy=(document.documentElement.scrollTop+followObj_y-followObj.offsetTop)*delta;
					dy=(dy>0?1:-1)*Math.ceil(Math.abs(dy));
					followObj.style.top=followObj.offsetTop+dy;
					}
				collection[0].object.style.left=document.body.clientWidth-113;
	
			}
		}	
	function startf(){
	var theFloaters		= new floaters();
	reval  = "";
reval += "<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\"><link rel=\"stylesheet\" href=\"css/onlineqq.css\" type=\"text/css\"></head><table border=\"0\" width=\"110\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"110\"><img border=0 src=\"imagesa/indimage/qqzxtop.gif\"></td></tr><tr><td valign=top  align=\"center\" background=imagesa/indimage/qqzxmeddle.gif height=10></td></tr><tr><td valign=middle  background=imagesa/indimage/qqzxmeddle.gif><TABLE width=100%><TR>	<TD width=29 align=\"right\"><img src=http://wpa.qq.com/pa?p=4:1905118:4 border=0 align=middle></TD>	<TD VALIGN=BOTTOM> <a class='qqb' target=blank href='http://wpa.qq.com/msgrd?V=1&Uin=1905118&Site=在线咨询&Menu=no'>网站功能</a></TD></TR><TR>	<TD width=29 align=\"right\"><img src=http://wpa.qq.com/pa?p=4:1522806286:4 border=0 align=middle></TD><TD VALIGN=BOTTOM> <a class='qqb' target=blank href='http://wpa.qq.com/msgrd?V=1&Uin=1522806286&Site=在线咨询&Menu=no' >展会合作</a></TD></TR></TR><TR>	<TD width=29 align=\"right\"><img src=http://wpa.qq.com/pa?p=4:1905118:4 border=0 align=middle></TD><TD VALIGN=BOTTOM> <a class='qqb' target=blank href='http://wpa.qq.com/msgrd?V=1&Uin=1905118&Site=在线咨询&Menu=no' >广告咨询</a></TD></TR><TR>	<TD width=29 align=\"right\"><img src=http://wpa.qq.com/pa?p=4:1905118:4 border=0 align=middle></TD>	<TD VALIGN=BOTTOM> <a class='qqb' target=blank href='http://wpa.qq.com/msgrd?V=1&Uin=1905118&Site=在线咨询&Menu=no'>高级会员</a></TD></TR><TR><TD width=29 align=\"right\"><img src=http://wpa.qq.com/pa?p=4:278507787:4 border=0 align=middle></TD>	<TD VALIGN=BOTTOM> <a class='qqb' target=blank href='http://wpa.qq.com/msgrd?V=1&Uin=1905118&Site=在线咨询&Menu=no'>紧急采购</a></TD></TR></TABLE></td></tr><tr><td width=\"110\"><img border=0 src=imagesa/indimage/qqzxbottom.gif></td></tr></table></html>";
	theFloaters.addItem('followDiv1',eval(document.body.clientWidth-112),116,reval);
		theFloaters.play();
	}
	
	startf();
	
//-->
