Posts: 5,935
Name: Adam for web page design, not program
Location: Toronto, Ontario, Canada
|
joder's right. There are a number of errors in your code, both from a validation and from a Javascript (your script error) point of view.
<body leftmargin="0" topmargin="0" onLoad=>
onload= what? There should be a function there, or at least some JS code.
I'd strongly suggest that you recode that page from the ground up and externalize both your Javascript and your CSS. It's making your code more confusing to look at when it's all bundled together like that, and it will be much easier to isolate without it all bunched together.
You might also want to open your pages in Firefox as well as IE, and when you look at them in FF, type javascript: into the address bar. A popup window will come up showing you more information on any Javascript and/or CSS errors you're making. It won't be a complete picture, but it will catch more stuff for you.
|