<iframe id="course_content" style="width:100%;margin:5px 0 0;" scrolling="no" src="<?php ?>" ></iframe>
 <script>
      $("#course_content").load(function() {
          var iframeHeight = $(this).contents().find("div.para").height();
          if(iframeHeight<180)
          {
              var iframeHeight = $(this).contents().find("body").height();
              $(this).height(iframeHeight+30);
          }
          else{
              //alert(iframeHeight+160);
              $(this).height(iframeHeight+160);
          }
      });
       </script>