Scrolling does not work in dialog for IE 6

Scrolling does not work in dialog for IE 6

Using
JQuery: 1.4.2
JQuery-UI: 1.8.2
Internet Explorer 6

When I have a long text in a dialog, scrollbar does not appear so a user can't see the whole text.

Example:
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
      <link type="text/css" href="css/smoothness/jquery-ui-1.8.2.custom.css" rel="stylesheet" />   
      <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
      <script type="text/javascript" src="js/jquery-ui-1.8.2.custom.min.js"></script>
      <script type="text/javascript">
            $(document).ready( function() {

                $("#myDialog").dialog({
                    autoOpen: true,
                    height: 200
                });

            });   
      </script>       
    </head>

    <body>
      <div id="myDialog" title="Long Text">
         A very looooooooooooooooooooooooooooooooooooooooong text
      </div>

    </body>
    </html>























Everything works fine in newer versions of IE or in Firefox.