function resizeIF(obj,obj2) { 
	var Body; 
	var H, Min; 
	size_reset(obj2);
	// 최소 높이 설정 (너무 작아지는 것을 방지) 
	Min = 200; 
	Body = (obj.contentWindow.document.getElementsByTagName('BODY'))[0]; 
	H = parseInt(Body.scrollHeight) + 5; 
	obj.style.height = (H<Min?Min:H) + 'px'; 
	obj2.style.height = Min + (H<Min?Min:H) + 'px'; 
	window.scrollTo(1, 1); 
} 


function size_reset(obj){
	obj.style.height = 50+'px';
}

