	function adjustLayout()  
	{  
	 // Hoehe des Antwortcontainers ermitteln.
 	 var answerHeight = 0;
	 answerHeight = xHeight("answerContainer");
	 
	 // Falls Hoehe des Interview Containers kleiner ist als die
	 // die des Antwortcontainers, Hoehe an Antwortcontainer anpassen.
	 if (answerHeight > xHeight("interviewContainer")) {
	 	xHeight("interviewContainer", answerHeight);
	 }
	}
	 
	window.onload = function()  
	{
	 xAddEventListener(window, "resize", adjustLayout, false);  
	 adjustLayout();  
	}

	
