$(function(){
	$('iframe').load(function() {

	    
      if (navigator.appName.indexOf("Internet Explorer") != -1)
{
     this.style.height =	this.contentWindow.document.body.scrollHeight + 'px';  
}
else
{
    this.style.height =	this.contentWindow.document.body.offsetHeight + 'px';  
}
   
	    
       
	});
});
