	var delta=0.08
	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()
		{

			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.offsetLeft!=(document.body.scrollLeft+followObj_x)) {
					var dx=(document.body.scrollLeft+followObj_x-followObj.offsetLeft)*delta;
					dx=(dx>0?1:-1)*Math.ceil(Math.abs(dx));
					followObj.style.left=followObj.offsetLeft+dx;
					}

				if(followObj.offsetTop!=(document.body.scrollTop+followObj_y)) {
					var dy=(document.body.scrollTop+followObj_y-followObj.offsetTop)*delta;
					dy=(dy>0?1:-1)*Math.ceil(Math.abs(dy));
					followObj.style.top=followObj.offsetTop+dy;
					}
				followObj.style.display	= '';
			}
		}	
		
	var theFloaters		= new floaters();
	//右面
	theFloaters.addItem('followDiv1','document.body.clientWidth-110',80,'<iframe width=120 height=330 frameborder=0 scrolling=0 src=222.asp></iframe>');
	//左面
	theFloaters.addItem('followDiv2',6,80,'<DIV align=left><TABLE cellSpacing=0 cellPadding=0 width=50 border=0><TBODY><TR><TD><table id="__01" width="69" height="250" border="0" cellpadding="0" cellspacing="0"><tr><td height="250" valign="top"><a href="../index.html"></a><a href="../cn/profile.html"></a><a href="../cn/contact.html"></a><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td><table width="100%" height="248" border="0" cellpadding="0" cellspacing="0" class="border_lan"><tr><td><table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"><tr><td align="center"><a href="member_type.asp" class="red1">快速注册，只需20秒</a></td></tr><tr><td height="30" align="center">&nbsp;</td></tr><tr><td align="center"><a href="member_type.asp"><img src="images/go.gif" width="103" height="54" border="0" /></a></td></tr></table><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td>&nbsp;</td></tr></table><table width="50%" border="0" cellspacing="0" cellpadding="0"><tr><td class="tdxia23"><a href="news.asp?classid=23"><img src="images/l1.gif" width="72" height="13" border="0" /></a></td></tr><tr><td class="tdxia23"><a href="news.asp?classid=30"><img src="images/l2.gif" width="72" height="13" border="0" /></a></td></tr><tr><td class="tdxia23"><a href="news.asp?classid=25"><img src="images/l3.gif" width="112" height="13" border="0" /></a></td></tr><tr><td class="tdxia23"><a href="wsms.asp"><img src="images/l4.gif" width="71" height="13" border="0" /></a></td></tr><tr><td class="tdxia23"><a href="qyzq.asp"><img src="images/qyzq.gif" width="71" height="13" border="0" /></a></td></tr></table></td></tr></table></td></tr></table><a href="#top"></a></td></tr></table></TD></TR><map name="Map10" id="Map10"><area shape="rect" coords="18,91,73,106" href="cpzs.asp"><area shape="rect" coords="18,110,74,127" href="rczp.asp"><area shape="rect" coords="19,133,73,149" href="lxfs.asp"><area shape="rect" coords="18,155,72,171" href="messages.asp"><area shape="rect" coords="21,178,71,194" href="http://www.263xmail.com" target="_blank"><area shape="rect" coords="5,352,92,362" href="#"><area shape="rect" coords="21,280,77,295" href="../index.asp"></map></TBODY></TABLE></DIV><table width="122" height="248" border="0" cellspacing="0" cellpadding="0" ><tr><td><img src="images2/bj1.jpg" alt="" width="122" height="248" usemap="#Mapr" border="0"></td></tr></table><map name="Mapr" id="Mapr"><area shape="rect" coords="8,183,127,222" href="djyAdd.asp" target="_blank" /></map>');

	theFloaters.play();
	
//图片格式调用方法
//<a href=http://www.makewing.com/lanren/ target=_blank><img src=images/ad_100x300.jpg border=0></a>
	