//×ó±ß
var left2_img='';

//ÓÒ±ß
var right2_img='<TABLE WIDTH="80" BORDER="0" CELLSPACING="0" CELLPADDING="0"><TR><TD><DIV ID=dvr  STYLE="Z-INDEX: 44; WIDTH: 80px; POSITION: absolute; HEIGHT: 20px; visibility:hidden"><DIV ID=dv250_right  STYLE="Z-INDEX: 44; WIDTH: 200px; POSITION: absolute; HEIGHT: 20px; left: -170"><A HREF=http://www.chinacorona.com/ad/ad.html  TARGET=_blank><IMG SRC=ad/0408_250x250.gif BORDER=0  onMouseOut="MM_showHideLayers(\'dv250_right\',\'\',\'hide\')"></A></DIV></DIV><A HREF=http://www.chinacorona.com/ad/ad.html TARGET=_blank><IMG SRC=ad/0408_80x60.gif BORDER=0 WIDTH="80" HEIGHT="60" onMouseOver="MM_showHideLayers(\'dv250_right\',\'\',\'show\')"></A></TD></TR></TABLE>';

var delta2=0.15
	var collection2;
	function floaters2() {
		this.items2	= [];
		this.addItem2	= function(id2,x,y,content)
				  {
					document.write('<DIV id='+id2+' 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 newItem2				= {};
					newItem2.object			= document.getElementById(id2);
					newItem2.x				= x;
					newItem2.y				= y;

					this.items2[this.items2.length]		= newItem2;
				  }
		this.play2	= function()
				  {
					collection2				= this.items2
					setInterval('play2()',10);
				  }
		}
		function play2()
		{

			for(var ii=0;ii<collection2.length;ii++)
			{
				var followObj2		= collection2[ii].object;
				var followObj2_x		= (typeof(collection2[ii].x)=='string'?eval(collection2[ii].x):collection2[ii].x);
				var followObj2_y		= (typeof(collection2[ii].y)=='string'?eval(collection2[ii].y):collection2[ii].y);

				if(followObj2.offsetLeft!=(document.body.scrollLeft+followObj2_x)) {
					var dx=(document.body.scrollLeft+followObj2_x-followObj2.offsetLeft)*delta2;
					dx=(dx>0?1:-1)*Math.ceil(Math.abs(dx));
					followObj2.style.left=followObj2.offsetLeft+dx;
					}

				if(followObj2.offsetTop!=(document.body.scrollTop+followObj2_y)) {
					var dy=(document.body.scrollTop+followObj2_y-followObj2.offsetTop)*delta2;
					dy=(dy>0?1:-1)*Math.ceil(Math.abs(dy));
					followObj2.style.top=followObj2.offsetTop+dy;
					}
				followObj2.style.display2	= '';
			}
		}	
		
	var thefloaters2		= new floaters2();
	thefloaters2.addItem2('followDiv3','document.body.clientWidth-100',75,''+right2_img+'');
	//thefloaters2.addItem2('followDiv2',20,230,''+left2_img+'');
	thefloaters2.play2();
