	function box_hide () 
	{
	 	document.getElementById ('box').style.visibility = 'hidden';
	}

	function box_vis () 
	{
	  	document.getElementById ('box').style.visibility = 'visible';
	}

	function box_position (x_pos, y_pos) 
	{
	  	document.getElementById ('box').style.left = x_pos;
	  	document.getElementById ('box').style.top = y_pos;
	}

	function box_bench (tinhalt) 
	{
		move_box_bench ();
	    	document.getElementById ('benchbox').innerHTML = tinhalt;
	}

	function box_bench_position (x_pos, y_pos) 
	{
	  	document.getElementById ('benchbox').style.left = x_pos;
	  	document.getElementById ('benchbox').style.top = y_pos;
	}

	function move_box_bench () 
	{
	    	box_bench_position (1, 1);

		x=document.body.scrollWidth;
	    	y_offset=document.body.scrollTop;
	    	box_bench_position (x-300, 10+y_offset);
 	}



	function box_text (id) 
	{


		var obj = document.getElementById("teambild");
		var pos = {left:0, top:0};

		if(typeof obj.offsetLeft != 'undefined')
		{
  		  while (obj)
		  {
		       pos.left += obj.offsetLeft;
		       pos.top += obj.offsetTop;
		       obj = obj.offsetParent;
		  }
		}
		else
		{
		       pos.left = obj.left ;
   		       pos.top = obj.top ;
		}


	    	y_offset=document.body.scrollTop;


		x=document.body.scrollWidth;

	    	//box_position ((x/2)-220, 502);
		box_position (pos.left, pos.top+255);
	    	document.getElementById ('box').innerHTML = Info[id];
	} 



