Well, you have some serious problems with your HTML code. You have <table> tags in your <head> section, you have <script> tags inserted in <table> tags in your head section, and you are calling scripts that you have not defined.
The first thing that you need to do is really clean up your HTML. It may be useful to do some reading on how HTML documents are structured and what is and is not valid to put into your <head> section.
As for your error, in your <body> tag you are calling the JavaScript function MM_preloadImages but you have not defined it anywhere in your page.
|