	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()
		{

			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();
//帝王学广告开始200rmb：2005年8月24日——2005年9月23日//qq415335597糊涂
//www.bolaa.com 300元/月 2005年10月12日--2005年11月11日//qq795800博啦！
//右边悬浮，目前状态开放。如果要开放，去掉下列代码前面的//就可以。如果关闭在下列代码前加//。里面的图片和连接地址请更换

	theFloaters.addItem('followDiv2','document.body.clientWidth-870',460,'<div id=csad2 onClick=javascript:window.hide() style=cursor:hand><img src=http://www.chinathink.net/images/close.gif border=0 vspace=3 alt=关闭广告><iframe frameborder=0  src=http://www.chinathink.net/adv/google_botton2.asp  scrolling=no marginwidth=0 marginheight=0 width=728 height=90></iframe></div>');
//	theFloaters.addItem('followDiv2','document.body.clientWidth-110',280,'<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 width=100 height=100><param name=movie value=adv/bolaa/bolaa.swf><param name=quality value=high><embed src=adv/bolaa/bolaa.swf quality=high type=application/x-shockwave-flash width=100 height=100></embed></object>');
//	theFloaters.addItem('followDiv2','document.body.clientWidth-110',280,'<a href=http://www.love21cn.com target=_blank><img src=/adv/love21cn/love21cn.gif border=0></a>');
//	theFloaters.addItem('followDiv2','document.body.clientWidth-110',280,'<a href=/adv/25ls/25ls.asp target=_blank><img src=/adv/25ls/25ls.gif border=0 alt=时政图书的两部典范之作，另类王安作品精粹></a>');
//左边悬浮,目前状态关闭。如果要开放，去掉下列代码前面的//就可以。如果关闭在下列代码前加//。里面的图片和连接地址请更换
//	theFloaters.addItem('followDiv3',10,230,'<a href=http://www.now.cn target=_blank><img src=http://b.todayisp.com/100x300.gif border=0></a><br>');
//	theFloaters.addItem('followDiv4',10,230,'<a href=http://www.now.cn target=_blank><img src=http://b.todayisp.com/100x300.gif border=0></a>');
//	theFloaters.addItem('followDiv4',10,230,'<iframe frameborder=0  src=http://creative.unionsys.bolaa.com/?daty=1&sp=1&pu=1301&agmt=73&da=460  scrolling=no marginwidth=0 marginheight=0 width=100 height=300></iframe>');
	theFloaters.play();

//关闭
function hide()  
{   
 
csad2.style.visibility="hidden";
}