document.writeln("<script>");
document.writeln("var delta=0.15");
document.writeln("var collection;");
document.writeln("function floaters() {");
document.writeln("	this.items	= [];");
document.writeln("	this.addItem	= function(id,x,y,content) {");
document.writeln("		document.write(\'<DIV id=\'+id+\' style=\"Z-INDEX: 10; POSITION: absolute;width:80px; height:30px;left:\'+(typeof(x)==\'string\'?eval(x):x)+\';top:\'+(typeof(y)==\'string\'?eval(y):y)+\'\">\'+content+\'</DIV>\');");
document.writeln("		");
document.writeln("		var newItem = {};");
document.writeln("		newItem.object = document.getElementById(id);");
document.writeln("		newItem.x = x;");
document.writeln("		newItem.y = y;");
document.writeln("");
document.writeln("		this.items[this.items.length]		= newItem;");
document.writeln("	}");
document.writeln("	this.play = function() {");
document.writeln("		collection = this.items");
document.writeln("		setInterval(\'play()\',10);");
document.writeln("	}");
document.writeln("}");
document.writeln("");
document.writeln("function play() {");
document.writeln("	if(screen.width<=800) {");
document.writeln("		for(var i=0;i<collection.length;i++) {");
document.writeln("			collection[i].object.style.display	= \'none\';");
document.writeln("		}");
document.writeln("		return;");
document.writeln("	}");
document.writeln("	for(var i=0;i<collection.length;i++) {");
document.writeln("		var followObj		= collection[i].object;");
document.writeln("		var followObj_x		= (typeof(collection[i].x)==\'string\'?eval(collection[i].x):collection[i].x);");
document.writeln("		var followObj_y		= (typeof(collection[i].y)==\'string\'?eval(collection[i].y):collection[i].y);");
document.writeln("");
document.writeln("		if(followObj.offsetLeft!=(document.body.scrollLeft+followObj_x)) {");
document.writeln("			var dx=(document.body.scrollLeft+followObj_x-followObj.offsetLeft)*delta;");
document.writeln("			dx=(dx>0?1:-1)*Math.ceil(Math.abs(dx));");
document.writeln("			followObj.style.left=followObj.offsetLeft+dx;");
document.writeln("			}");
document.writeln("");
document.writeln("		if(followObj.offsetTop!=(document.body.scrollTop+followObj_y)) {");
document.writeln("			var dy=(document.body.scrollTop+followObj_y-followObj.offsetTop)*delta;");
document.writeln("			dy=(dy>0?1:-1)*Math.ceil(Math.abs(dy));");
document.writeln("			followObj.style.top=followObj.offsetTop+dy;");
document.writeln("			}");
document.writeln("		followObj.style.display	= \'\';");
document.writeln("	}");
document.writeln("}");
document.writeln("");
document.writeln("var theFloaters = new floaters();");
document.writeln("	theFloaters.addItem(\'followDiv1\',\'document.body.clientWidth-106\',80,\'<table width=110 border=0 cellspacing=0 cellpadding=0><tr><td><img src=images/QQ/top.gif width=110 height=36></td></tr><tr><td height=48 background=images/QQ/middle.gif><div align=\"center\"><a href=#target=_blank><A href=\"http://wpa.qq.com/msgrd?V=1&amp;Uin=241677449&amp;Site=www.hsccits.com&amp;Menu=yes\" target=blank><img src=http://www.hsccits.com/images/Qq/12_m.gif alt=ÔÚÏß×ÉÑ¯QQ border=0><font color=red>QQÔÚÏß×ÉÑ¯</font></a></div></td></tr><tr><td><img src=images/QQ/bottom.gif width=110 height=30></td></tr></table>\');");
document.writeln("theFloaters.addItem(\'followDiv2\',6,80,\'\');");
document.writeln("theFloaters.play();");
document.writeln("</script>");