
var m=document.getElementById("container");


	var maxHeight = 0;
	
		for (ib=0; ib<m.children.length; ib++) {
			maxHeight = Math.max(maxHeight, m.children.item(ib).offsetHeight); 
		}
		
		for (ic=0; ic<m.children.length; ic++) {
			m.children.item(ic).style.height = (maxHeight+20);
		}
		
m.style.height = (maxHeight+20);



var m=document.getElementById("inner");


var fullHeight = 20;

	for (ib=0; ib<m.children.length; ib++) {
		fullHeight = fullHeight + m.children.item(ib).offsetHeight; 
	}
		
m.style.height = fullHeight;

