function DrawTextBox(theVar,x,y,state) {

	if (state==0) 	{state='hidden';
	} else 		{state='visible';};
	x = x + 10;
	y = y - 10;
    
	
		
		if(document.layers){
			if ( x > 260){ x = x - 130 }
			if ( y < 30) { y = y + 30 }
    		//thisbrowser="NN4";
    		document.all['Beschriftung'].style.visibility=state;
  			document.all['Beschriftung'].style.left=parseInt(document.all['theMapImage'].style.left) + x;
  			document.all['Beschriftung'].style.top=parseInt(document.all['theMapImage'].style.top) + y;
			  document.all['Beschriftung'].innerHTML=theVar;
     }
      if(document.all){
           		if ( x > 260) { x = x - 130 }
							if ( y < 30) { y = y + 30 }
			//thisbrowser="ie";
       	   		document.all['Beschriftung'].style.visibility=state;
			document.all['Beschriftung'].style.left=parseInt(document.all['theMapImage'].style.left) + x;
			document.all['Beschriftung'].style.top=parseInt(document.all['theMapImage'].style.top) + y;
			document.all['Beschriftung'].innerHTML=theVar;
       		 }
       		if(!document.all && document.getElementById){
        	        if ( x > 260) { x = x - 130 }
			if ( y < 30) { y = y + 30 }
			//thisbrowser="NN6";
           		 document.getElementById('Beschriftung').style.visibility=state;
			document.getElementById('Beschriftung').style.left=parseInt(document.getElementById('theMapImage').style.left) + x;
			document.getElementById('Beschriftung').style.top=parseInt(document.getElementById('theMapImage').style.top) + y;
			document.getElementById('Beschriftung').innerHTML=theVar;

       		 }


}


