I tried fixing up your code but, it was so bad that I gave up. I can tell you some things that will get you headed in the right direction. Only one head and one body allowed per page. HTML tags, unless part of scripts (between <script> and </script> tags), and then only sometimes, should otherwise never be in the head. There is generally no use calling a function twice on a page in the same way and certainly not before the function you are calling is established. Having empty script tags:
HTML Code:
<script type="text/javascript"> </script>
serves no purpose. Having empty markup like:
HTML Code:
<tr><td></td></tr>
or:
will add spacing and/or height and/or width to your page that is sometimes not desired.
Finally, so many things in HTML affect one another that, it is best to use the simplest code possible, if for no other reason than to avoid confusion. If something doesn't look right, your first thought should be, "What can I take away to fix this?" not, "What can I add?"
Bookmarks