function resizeIFrame(sFrameName) { var objBody = window.frames[sFrameName].document.body; var objFrame = document.getElementById(sFrameName); var isIE = (navigator.userAgent.toLowerCase().indexOf("msie")!=-1 && window.document.all) ? true:false; if(isIE == true) { ifrmHeight = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight); } else { ifrmHeight =..