function autofitIframe(id) 
     { 
          if (!window.opera && !document.mimeType && document.all && document.getElementById) 
          {         window.top.document.getElementById(id).style.height=document.getElementById("contentContainer").offsetHeight+"px"; 
          } 
          else if(document.getElementById) 
          { 
window.top.document.getElementById(id).style.height=document.getElementById("contentContainer").scrollHeight+"px" 
          } 
     } 
