function resize(rootId, parId){
	var root = document.getElementById(rootId);
	var par = document.getElementById(parId);
	if(root.offsetHeight > par.offsetHeight){
		par.style.minHeight = root.offsetHeight-par.offsetHeight+par.offsetHeight-50+'px';
		par.style.height = root.offsetHeight-par.offsetHeight+par.offsetHeight-50+'px';
	}
}