Always fun working with IE6, haha. 
Especially when I see one page working and others not working, I try to compare the source of the working / not working pages to see what kind of tricks IE6 may like. 
One thing I noticed on both pages is that just before the </div> above the footer div, there's the following:
 <p><br />
  </p>
Perhaps IE6, for whatever reason, is rendering your table on the markets page below the footer div, but adding this <p> tag may stop that. Kind of a long shot, but that's the only difference I noticed between the two working pages and the Markets page on a quick look over. 
Try making the ending code on that page: 
	
	
	
		Code:
	
	
		<p><br />
  </p>
</div>
<div id="footer"><p><img src="../assets/fw_assets_new/footer_sepsci_gray.jpg" alt="Footer" name="footer" width="980" height="40" id="footer" /></div></p>
  <!-- end #footer --></div>
<!-- end #container --></div>
</body>
</html>
	 
 
With IE6 it's always a fun game of guess and check when it comes to this sort of issue. 
Good luck!