Thanks! It will still have some of the same limitations of other resize iframe scripts. Certain types of styles and layout on either the external or top page can mess it up. But for basic pages, it is very good.
You may use whatever method you like to get pages into the iframe, including links on the pages already in the iframe. I used target, as it works without javascript enabled. I know that using javascript is preferred for validation, but the DOCTYPE's that support iframe, and those that support target aren't that different. However, if using javascript and a link to load pages into the iframe, this is better:
HTML Code:
<a href="some2.htm" onclick="frames[0].location.replace(this.href);return false;">Link Text</a>
For both accessibility (non-javascript and non-iframe folks will still see the content), and to avoid the href="javascript: . . .
unpleasantness that can occur in IE.
Bookmarks