function cmsIframeMaximize(obj_frm,obj_win){ var height; if (obj_frm && obj_win){ height = obj_win.document.body.scrollHeight + 5; // + obj_win.document.body.offsetHeight - obj_win.document.body.clientHeight if (height > 200) obj_frm.style.height = height + 'px'; return true; } return false; }