/* ***************************************************** 
*  @Autor: Diogo "Mr. Fogg" Góes                       * 
*  @Contato: fileasfogg@gmail.com                      * 
*  Licensa Creative Commons                            *
*  http://creativecommons.org/licenses/by-sa/2.5/br/   *                               
*  Created with MAX's HTML Beauty++ 2004               * 
* ******************************************************/ 

function iframeAutoHeight(quem) {
 //by Micox - elmicox.blogspot.com - elmicox.com - webly.com.br  
 if(navigator.appName.indexOf("Internet Explorer")>-1) { //ie sucks
  var func_temp = function() {
  var val_temp = (quem.contentWindow.document.body.scrollHeight < 1020 ? 1020 : quem.contentWindow.document.body.scrollHeight) + 25;
  quem.style.height = val_temp + "px";
  } 
  window.setTimeout(function() { func_temp() },100) //ie sucks
 } else {
  var val = quem.contentWindow.document.body.parentNode.offsetHeight + 25;
  quem.style.height= val + "px";
 }    
}
