function autofitIframe(id){ if (document.all){ parent.document.getElementById(id).style.height=this.document.forms[0].offsetHeight+"px"; } else if(document.getElementById) { parent.document.getElementById(id).style.height=this.document.forms[0].scrollHeight+"px"; } else { parent.document.getElementById(id).style.height=this.document.forms[0].scrollHeight+"px"; } } function autofitTables(){ var id1= 'TableSP01'; var id2= 'TableSP02'; var id3= 'TableSP03'; if (document.all){ parent.document.getElementById(id1).style.height=this.document.forms[0].offsetHeight+"px"; parent.document.getElementById(id2).style.height=this.document.forms[0].offsetHeight+"px"; parent.document.getElementById(id3).style.height=this.document.forms[0].offsetHeight+"px"; } else if(document.getElementById) { parent.document.getElementById(id1).style.height=this.document.forms[0].scrollHeight+"px"; parent.document.getElementById(id2).style.height=this.document.forms[0].scrollHeight+"px"; parent.document.getElementById(id3).style.height=this.document.forms[0].scrollHeight+"px"; } else { parent.document.getElementById(id1).style.height=this.document.forms[0].scrollHeight+"px"; parent.document.getElementById(id2).style.height=this.document.forms[0].scrollHeight+"px"; parent.document.getElementById(id3).style.height=this.document.forms[0].scrollHeight+"px"; } }