// ====================================== AKTIVE_FUSSZEILE ==========================


			// Funktion fuer die Meldungen in der Fusszeile.

			function MM_displayStatusMsg(msgStr) { //v2.0

			  status = msgStr;

			  document.MM_returnValue = true;

			  }
// ================================================================================

  	// Funktion fuer INFOTEXTE ALS LAYER

	browName = navigator.appName; browVer = parseInt(navigator.appVersion);
	Information = new Array();
	
	Information[0]  = "Info1"	
	
	Information[1]  = "Info2"	

        Information[2]  = "Info3"

        Information[3]  = "Info4"

        Information[4]  = "Info5"

        Information[5]  = "Info6"

        Information[6]  = "Info7"
	
        Information[7]  = "Info8"

	Information[8]  = "InfoAGB"

       Information[9]  = "Info10"

       Information[10]  = "Info11"

	Information[11]  = "Info12"

       
	
		function showLayer(descTxt){				
		if (document.layers){
			for (i=0;i<Information.length;i++){		
				if (Information[i]!= descTxt){
					document.layers[Information[i]].visibility = "hide"
				}
			}		
			if (descTxt!=""){
				ULay = document.layers[descTxt]   	
			}	
		}
		else if (document.all){
			for (i=0;i<Information.length;i++){					
			//alert(Information[i])
				if (Information[i]!= descTxt){
					document.all[Information[i]].style.visibility = "hidden"
				}
			}
			if (descTxt!=""){
				ULay = document.all[descTxt].style 
			}
		}					
		else {
			for (i=0;i<Information.length;i++){					
			//alert(Information[i])
				if (Information[i]!= descTxt){
					document.getElementById(Information[i]).style.visibility = "hidden"
				}
			}
			if (descTxt!=""){
				ULay = document.getElementById(descTxt).style 
			}
		}
		if (descTxt!=""){				
			ULay.visibility =(window.document.layers)?"show":"visible"					
		}
	}
	
	// Ändert die Hintergrundfarbe
	
	 function bgFarbe(sFarbe, sStil){
   document.bgColor = sFarbe;
 
 }
	
// ================================================================================	
