There could also be other problems, but here in the page's source code:
Code:
<script type="text/javascript">
<!--
// this JavaScript code is only needed if you care about this working in IE5/Mac
window.onload = function() {
if(document.defaultCharset && !window.print && document.body) { // is IE/Mac
if(location.search.toL . . .
The highlighted is an unclosed HTML comment tag. Any browser may take that to mean that the entire rest of the page is one huge comment. All those other browsers are error correcting it for you. Remove it.
Bookmarks