/*
* iframe 스트롤 없이 차서 나오게 처리하는 함수
* iframe 내부 페이지에서 처리할 내용
*/
function setHeight() {
if (parent.document.all.myuploadD) {
parent.document.all.myuploadD.height=document.body.scrollHeight;
}
}
/*
* iframe 스트롤 없이 차서 나오는 함수를 호출
* iframe 내부 페이지에서 처리할 내용
*/
window.onload=function() {
setHeight(); //iframe 크기에 사이즈 맞추기
}