The page uses two things that cause it to fail on Firefox;
document.all['dek']
This throws about a bajillion errors in the firefox javascript console (Tools > Javascript Console), because document.all is a nonstandard way of referencing an object by it's ID.
An explanation is here:
http://www.metalusions.com/backstage/articles/8/
Quote:
Originally Posted by metalusions.com
Before the world wide web consortium standardized the DOM (document object model) used by browser scripting languages, JScript, Microsoft's clone of the Netscape scripting language JavaScript, used document.all to reference elements by their IDs.
Many web sites are still using this over 4 years after the standard DOM was released as a recommendation. Also many scripting help sites still teach this method of element access.
|
The next big problem is that they use innerHTML, another nonstandard way to insert content into a tag -- in this case, inserting a table into a DIV tag. Firefox won't handle this bastardization of W3C DOM referencing, unfortunately. And neither should Internet Explorer. But that's a different story.
I'd fix it and create you a page that works in both, but it's actually quite a bit of work to replace an innerHTML tag with the proper DOM commands.
Make sense?