	var collection;
	function floaters() {
		this.items	= [];
		this.addItem	= function(id,x,y,content)
				  {
					  
				    show1.innerHTML=content
					show_top.innerHTML=topstr					
					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 (!stopla){
			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.documentElement.scrollLeft+followObj_x)) {
					var dx=(document.documentElement.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.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;
					}
				followObj.style.display	= '';
			}
		  }//if
		}	
		function alphaIt() {
if (move_div.filters.Alpha.Opacity < alpha ){
move_div.filters.Alpha.Opacity += 10;
setTimeout("alphaIt()",10); 
}
else {
//setTimeout("clearIt()",2000);
}
}
function clearIt() {
if (move_div.filters.Alpha.Opacity > 0 ){
move_div.filters.Alpha.Opacity -= 10;
setTimeout("clearIt()",10); 
}
}
closeit()
function showinfo(str){
	var theFloaters	= new floaters();
	var x;
	stopla=false
	x=document.body.clientWidth/2 -371/2;
	if(x<0)x=0;
	theFloaters.addItem('move_div',x,150,str);
	theFloaters.play();
	alphaIt()
}
function closeit(){
var x;
x=document.body.clientWidth/2 -370/2;
if(x<0)x=0;
stopla=false;
var theFloaters	= new floaters();
theFloaters.addItem('move_div',-600,150,'');
theFloaters.play();
clearIt();
}
function stopmove(){
	if(stopla){
      stopla=false;}else{stopla=true}
}

var Obj=''
document.onmouseup=MUp
document.onmousemove=MMove

function MDown(Object){
Obj=Object.id
document.all(Obj).setCapture()
pX=event.x-document.all(Obj).style.pixelLeft;
pY=event.y-document.all(Obj).style.pixelTop;
}

function MMove(){
if(Obj!=''){ 
 stopla=true;
 document.all(Obj).style.left=event.x-pX;
 document.all(Obj).style.top=event.y-pY;
 }
}

function MUp(){
if(Obj!=''){
 document.all(Obj).releaseCapture();
 Obj='';
 }
}

		

