function xxx(variante,browser){
	if(browser == 1){  
 		if (variante == 1) { 
			var HoeheL = window.document.getElementById("inhaltL").clientHeight;
			var HoeheR = window.document.getElementById("inhaltR").clientHeight;
			var Hoehe=0;
			if(HoeheL > HoeheR){ Hoehe=HoeheL; }else{ Hoehe=HoeheR; }
			
			// Inhalte-Spalten auf gleiche Höhe setzen
			window.document.getElementById("inhaltL").style.height=Hoehe+"px";
			window.document.getElementById("inhaltL").style.backgroundColor="white";
			window.document.getElementById("inhaltR").style.height=Hoehe+"px";
			window.document.getElementById("inhaltR").style.backgroundColor="white";			
			  
 		}else{
			var Hoehe=window.document.getElementById("inhaltALLES").clientHeight;
 		}
 		var wert=Hoehe+300;
		document.getElementById("Ausgabe").style.top=wert+"px";
		document.getElementById("Ausgabe").style.display="block";
 	}	
	else{ 
 		if (variante == 1) { 
 			//alert("Firefox");
			var HoeheL = window.document.getElementById("inhaltL").offsetHeight;
			var HoeheR = window.document.getElementById("inhaltR").offsetHeight;
			var Hoehe=0;
			if(HoeheL > HoeheR){ Hoehe=HoeheL; }else{ Hoehe=HoeheR; } //alert(Hoehe); 
			
			// Inhalte-Spalten auf gleiche Höhe setzen
			window.document.getElementById("inhaltL").style.height=Hoehe+"px";
			window.document.getElementById("inhaltL").style.backgroundColor="white";
			window.document.getElementById("inhaltR").style.height=Hoehe+"px";
			window.document.getElementById("inhaltR").style.backgroundColor="white";
 		}else{
			var Hoehe=window.document.getElementById("inhaltALLES").offsetHeight;
 		}

		var wert=Hoehe+300;
		document.getElementById("Ausgabe").style.top=wert+"px";
		document.getElementById("Ausgabe").style.display="block";
		
 	}
}

/*
NS4:

var Breite = window.document.layers["idDiv"].document.width;
var Hoehe = window.document.layers["idDiv"].document.height;

IE4:

var Breite = window.document.all["idDiv"].clientWidth;
var Hoehe = window.document.all["idDiv"].clientHeight;

IE5:

var Breite = window.document.getElementById("idDiv").clientWidth;
var Hoehe = window.document.getElementById("idDiv").clientHeight;

NS6:

var Breite = window.document.getElementById("idDiv").offsetWidth;
var Hoehe = window.document.getElementById("idDiv").offsetHeight;
*/


