function iFrameHeight() {
  var h = 0;
  if ( !document.all ) {
    h = document.getElementById('communityiframe').contentDocument.height;
    document.getElementById('communityiframe').style.height = h + 60 + 'px'; 
  } else if( document.all ) {
    h = document.frames('communityiframe').document.body.scrollHeight;
    document.all.communityiframe.style.height = h + 20 + 'px'; 
  }       
} 

