<!--
//Aufruf mit: onMouseOver="info(Titel, Text);" onMouseOut="clr();"
// fester Teil der Variablendeklaration

	var x = 0;
	var xx=100;
	var yy=0;
	var y = 0;
	var showit = 0;


//BROWSER CHECKEN
//----------------------------------------------------------------------------------------------------------

	var NS4	= (navigator.appName.indexOf("Netscape") >= 0 && parseFloat(navigator.appVersion) >= 4) ? 1 : 0;
	var NS6	= (NS4 && document.getElementById) ? 1 : 0;
	if (NS6)
		NS4 = 0;

	var IE = (document.all) ? 1 : 0;
	if (!NS4 && !IE && !NS6) IE = 1;

	var IE4 = (document.all) ? 1 : 0;
	var IE5 = (IE4 && navigator.appVersion.indexOf("5.") >= 0) ? 1 : 0;


    if ( (NS4) || (IE) || (NS6) )
    	{
    	if (NS4) over = document.popDiv
    	if (IE)  over = popDiv.style
	    if (NS6) over = document.getElementById('popDiv')

    	document.onmousemove = mouseMove

     	if (NS4) document.captureEvents(Event.MOUSEMOVE)

    	if (NS4) box2 = document.box
    	if (IE)  box2 = box.style
	    if (NS6) box2 = document.getElementById('box')

    	if (NS4) schnip = document.snip
    	if (IE)  schnip = snip.style
	    if (NS6) schnip = document.getElementById('snip')
	}

//----------------------------------------------------------------------------------------------------------

    function wtl(txt)
    {
    	show(over)

	    if (NS4)
    	{
   	    	var lll = document.popDiv.document
	    	lll.write(txt)
    		lll.close()

	   	}
    	else
	   	{
    		if (IE || NS6) document.getElementById('popDiv').innerHTML = txt
    	}
	}

    function schnapp(txt)
    {
	    if (NS4)
    	{
   	    	var lll = document.snip.document;
	    	lll.write(txt);
    		lll.close();

	   	}
    	else
	   	{
    		if (IE || NS6) document.getElementById('snip').innerHTML = txt;
    	}
	}

//----------------------------------------------------------------------------------------------------------
    function snip(obj)
    	{
    	if (NS4)
    		{
    	  	box2.height = "auto";
    		}
    	else if (NS6) {
    	 	box2.style.height = "auto";
    		}
    	else if (IE) {
  			document.getElementById("box").style.height = "auto";
    		}
    	txt = '<a href="#tabelle"><img src="/neu/images/snip.gif" onclick="snap();" border=0 alt="einklappen"></a>';
    	schnapp(txt);
    	}

    function snap(obj)
    	{
    	if (NS4)
    		{
    	  	box2.height = 150+"px";
    		}
    	else if (NS6) {
    	 	box2.style.height = 150+"px";
    		}
    	else if (IE) {
  			document.getElementById("box").style.height = 150+"px";
    		}
    	txt = '<a href="#tabelle"><img src="/neu/images/snap.gif" onclick="snip();" border=0 alt="aufklappen"></a>';
    	schnapp(txt);
    	}

    function show(obj)
    	{
    	if (NS4) obj.visibility = "show"
    	else if (NS6) obj.style.visibility = "visible"
    	else if (IE) document.getElementById("popDiv").style.visibility = "visible"
    	}


// FUNKTION: MOUSEOUT
// clr -> hide
//----------------------------------------------------------------------------------------------------------

    function hide(obj)
    	{
    	if (NS4) obj.visibility = "hide"
    	else if (NS6) obj.style.visibility = "hidden"
    	else if (IE) obj.visibility = "hidden"
    	}

// EBENE BEWEGEN
//----------------------------------------------------------------------------------------------------------

    function moveTo(obj,lx,ly)
    	{
    	if (NS6)
    		{
    		obj.style.left	=	lx+"px";
    		obj.style.top	=	ly+"px";
    		return	false;
   		}
   	else 	{
   	 	obj.left = lx+"px";
 	 	obj.top = ly+"px";
    		}
    	}


// FUNKTION: MOUSEOUT
// clr -> hide
//----------------------------------------------------------------------------------------------------------
    function clr()
    	{
    	if ( (NS4) || (IE) || (NS6) )
    		{
			showit = 0;
			hide(over);

    	}
    }


// EBENE ZUSAMMENSTELLEN
//----------------------------------------------------------------------------------------------------------

    function rinfo(description)
    	{

		txt = "<table cellspacing=1 cellpadding=0 border=0 width=300 bgcolor=000000>"
        +"<tr><td bgcolor=ffffff style=\"padding:4px;\">\n"
        +description
        +"</td></tr></table>";
      	wtl(txt);
    	display_it();
    }

    function info(description)
    	{
		yy=-90;
		xx=-250;

//		if (yy==-111) xx=-335;
//		if (yy==-244) xx=-335;

		rinfo(description);
    }


// ANZEIGEN
//----------------------------------------------------------------------------------------------------------

    function display_it()
    	{
		if ( (NS4) || (IE) || (NS6) )
			{
    		if (showit == 0)
    			{
    			show(over);
    			moveTo(over,x+xx,y+yy);
    			showit = 1;
    		}
    	}
    }


// REAKTION AUF MAUSZEIGERBEWEGUNG
//----------------------------------------------------------------------------------------------------------

    function mouseMove(e)
    	{
    	if (NS4 || NS6) 	{x=e.pageX; y=e.pageY;}
    	if (IE4) 		{x=event.x; y=event.y;}
    	if (IE5) 		{x=event.x+document.body.scrollLeft; y=event.y+document.body.scrollTop;}

    	if (showit)    		{moveTo(over,x+xx,y+yy);}
	}

  //-->