IE7 RC1 - Second embedded HTML using <OBJECT> not rendered: Bug?

All,

Wondering if you can help me with an issue i'm having with IE7 RC1. I've checked my source code (HTML & CSS) against the W3 validators (they're valid) and the page renders as expected in Firefox and Opera, it's driving me mad!

I've a HTML page that included 2 object tags that embed the navigation page (in <div> tag using position to set it as a left column) and embed the footer (in <div> tag using CSS position to set it ias the right column).

The first object tag is being rendered (albeit with scrollbars, but that not important now...) so the navigation is a frame on the left. The mark-up is being rendered in the right hand column, but the footer is not being embedded in IE7. The <OBJECT> tag message is not being displayed so it appears IE is rendering it, but collapsing it or something very strange. If I load the footer page directly in IE all is well.

Live site as:http://www.petergoodrum.toucansurf.com/fotfp_new/content/

<!-- Code Snippets-->

Main Page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta name="author" content="Peter Goodrum">
<meta name="description" content="Website for the Friends of Thetford Forest Park (FOTFP)">
<meta name="keywords" content="FOTFP, FOFTP, Thetford Forest, Forest, Thetford, Friends of Thetford Forest Park, Friends of Thetford Forest, Friends">
<link rel="stylesheet" type="text/css" href="../styles/fotfp_main.css">
<title>FOTFP - Friends of Thetford Forest Park</title>
</head>
<body>
<!-- div tag control left (nav) column -->
<div id="nav">
<!-- import the navigation frame -->
<object data="nav.html" type="text/html" style="width: 99%; height: 40em; border: thin solid black;" >Your web browser can not render the embedded object. (nav)</object>
</div>
<!-- div tag control right (content) column -->
<div id="content" class="content">
<img src="../images/fotfplogo.jpg" alt ="Friends of Thetford Forest Park Logo">
<h1>Welcome!</h1>
<h3>Welcome to the website of the Friends of Thetford Forest Park</h3>

On the left is the navigation for the site. If you click on the links you will move to the relevant page.


We hope you like the new look. If you have any comments or issues with the new site then please contact us via <a href="mailto:webmaster@petergoodrum.net">webmaster@petergoodrum.net</a></p>
<object data="footer.html" type="text/html" style="width: 95%;">Your web browser can not render the embedded object. (footer)</object>
</div>
<!-- end div tag control for right (content) column -->
</body>
</html>

Navigation:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta name="author" content="Peter Goodrum">
<meta name="description" content="Website for the Friends of Thetford Forest Park (FOTFP)">
<meta name="keywords" content="FOTFP, FOFTP, Thetford Forest, Forest, Thetford, Friends of Thetford Forest Park, Friends of Thetford Forest, Friends">
<link rel="stylesheet" type="text/css" href="../styles/fotfp_main.css">
<title>FOTFP Navigation</title>
</head>
<body>
<div class="navtext">
<img src="../images/fotfplogosmall.jpg" alt="FOTFP Logo">
<ul>
<li><a href ="index.html" target="_top">Home</a></li>
<li><a href ="aboutus.html" target="_top">About Us</a></li>
<li><a href ="fotfpwork.html" target="_top">Our achievements</a></li>
<li><a href ="goshawk.html" target="_top">Goshawk Trail &amp; Screen</a></li>
<li><a href ="restoration.html" target="_top">Mildenhall Warren Restoration</a></li>
<li><a href ="fotfpevents.html" target="_top">Friends Upcoming Events</a></li>
<li><a href ="">Friends Past Events</a></li>
<li><a href ="">Join Us</a></li>
<li><a href ="newsarchive.html" target="_top">Newsletters</a></li>
<li><a href ="">Your Forest</a></li>
<li><a href ="links.html" target="_top">Links</a></li>
<li><a href ="contactus.html" target="_top">Contact Us</a></li>
<li><a href ="">Corporate Membership</a></li>
<li><a href ="">Maps</a></li>
</ul>
<a href="fotfp_rss.xml"><img src="../images/xml.png" alt="RSS Feed" border="0"></a>
</div>
</body>
</html>

Footer:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta name="author" content="Peter Goodrum">
<meta name="description" content="Website for the Friends of Thetford Forest Park (FOTFP)">
<meta name="keywords" content="FOTFP, FOFTP, Thetford Forest, Forest, Thetford, Friends of Thetford Forest Park, Friends of Thetford Forest, Friends">
<link rel="stylesheet" type="text/css" href="../styles/fotfp_main.css">
<title>FOTFP - Footer</title>
</head>
<body>
<div id="footer">
<table class="footer">
<tr><td>Website created and maintained for the Friends by Peter Goodrum.</td></tr>
<tr><td>Should there be any problems with the website then email <a href="
mailto:webmaster@petergoodrum.net?subject=FOTFP Website">webmaster@petergoodrum.net</a> with the word "FOTFP Website" in the subject box.</td></tr>
<tr><td>&copy; Friends of Thetford Forest Park 2002-2006</td></tr>
</table>
</div>
</body>
</html>

[9092 byte] By [PeteGoodrum] at [2007-12-25]