//<script language="JavaScript">

    var IblnDoNotKillWindow = false;
    var IstrCurrentMenuName = "unternehmen";
    			
    			
    function ShowDiv(strName)
    {
    	//vorherig geoeffnetes Menue schliessen
    	IblnDoNotKillWindow = false;
    	this.HideDiv(IstrCurrentMenuName);    		
    	IstrCurrentMenuName = strName
    	IblnDoNotKillWindow = true;	

        this.spawnDiv(strName);
    }
        	
    function spawnDiv(strName)
    {
    	//Hier wird einfach nur noch der Inhalt in das Div geladen und aktiviert
    	if(document.all)  //IE
        {
    	   document.all(strName).style.visibility = 'visible';
        }
        else              //netscape
        {
    	  	if(document.getElementById)	//NE 6.x
    	  	{
    	  		document.getElementById(strName).style.visibility = 'visible';
    	  	}
    	  	else						//NE 4.7x
    	  	{
    	  		document.layers[strName].visibility = "show";
    	  	}
        }
    }

    function HideDiv(strName)
    {
    	//Hier wird einfach nur noch der Inhalt in das Div geladen und aktiviert
        if(!IblnDoNotKillWindow)
        {
    	    if(document.all)  //IE
            {
    	       document.all(strName).style.visibility = 'hidden';
            }
            else              //netscape
            {
    	      	if(document.getElementById)	//NE 6.x
    	      	{
    	      		document.getElementById(strName).style.visibility = 'hidden';
    	      	}
    	      	else						//NE 4.7x
    	      	{
    	      		document.layers[strName].visibility = "hide";
    	      	}
            }
        }
    }    	