<!--
function resize(){
	var selfBody = document.body;
	var objBody = target_iframe.document.body;
	var objFrame = document.getElementById("target_iframe");
							
	ifrmHeight = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight);
//	ifrmWidth = objBody.scrollWidth + (objBody.offsetWidth - objBody.clientWidth);
	

	var arrTmp	=	String(objFrame.src).split('?');

	var pattern =  /write.html/;
	// ±Û¾²±â ÀÏ°æ¿ì ¾ÆÀÌÇÁ·¹ÀÓ ³ôÀÌ¸¦ ´õ ´Ã·ÁÁÖÀÚ...
	if(pattern.test(arrTmp))	objFrame.setExpression('height', ifrmHeight+300);
	else						objFrame.setExpression('height', ifrmHeight+50);

}
//-->
