function resizeFrame(iframeObj){
	var innerBody = iframeObj.contentWindow.document.body;
	oldEvent = innerBody.onclick;
	innerBody.onclick = function(){ resizeFrame(iframeObj, 1); oldEvent; };
	var innerHeight = innerBody.scrollHeight + (innerBody.offsetHeight - innerBody.clientHeight);
	iframeObj.style.height = (innerHeight + 20) + 'px';
//	var innerWidth = innerBody.scrollWidth + (innerBody.offsetWidth - innerBody.clientWidth);
//	iframeObj.style.width = innerWidth + 'px';    
	if( !arguments[1] ) this.scrollTo(1,1); // 특정 이벤트로 인한 호출시 스크롤을 그냥 둔다.		
}

$(document).ready(function(){
	var leftBoxHeight = $(".left_box").get(0);
	if(leftBoxHeight) {
		$(".right_box").css("height",leftBoxHeight.scrollHeight);
	}
});

