// IFRAME 리사이즈
function ifr_resize(obj) {
var ch = obj.contentWindow.document.body.scrollHeight;
obj.style.height = ch;
}
var ch = obj.contentWindow.document.body.scrollHeight;
obj.style.height = ch;
}
// 사용법
<iframe src="http://wams.co.kr" width="404" height="400" scrolling="no" align="left" hspace="30" vspace="10" onLoad="ifr_resize(this);"></iframe>
















