ho fatto le modifiche che mi hai detto ma ancora non va su ie7

riporto il file modificato:

Codice PHP:
function changeHeight(iframe)
      {
        try
        {
          var 
innerDoc = (iframe.contentDocument) ? iframe.contentDocument iframe.contentWindow.document;
          if (
innerDoc.body.offsetHeight//ns6 syntax
          
{
             
iframe.height innerDoc.body.offsetHeight 32//Extra height FireFox
          
}
          else if (
iframe.document && iframe.document.body.scrollHeight//ie5+ syntax
          
{
             
iframe.height iframe.document.body.scrollHeight;
          }
        }
        catch(
err)
        {
          
alert(err.message);
        }
      }