Thanks. I just went from 89 to 41 errors just from fixing images. Completely forgot about the end / mark.
I also removed this to bring it down to 40 errors. About 5 are coming from the highslide mod which I posted in its thread but received no response yet. Maybe you'd know?
allowtransparency="yes"
.................................................. ..........
Line 712, Column 15: ID "highslide-container" already defined.</div><div id="
highslide-container"></div>
✉
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
.................................................. ..........
Line 705, Column 9: ID "highslide-container" first defined here.<div id="
highslide-container"></div>
.................................................. ..........
Line 713, Column 9: ID "controlbar2" already defined.<div id="
controlbar2" class="highslide-overlay controlbar2">
✉
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
.................................................. ..........
Line 866, Column 39: character data is not allowed here.<table style="width: 100 cellspacing="3
" cellpadding="3">
✉
You have used character data somewhere it is not permitted to appear. Mistakes that can cause this error include:
- putting text directly in the body of the document without wrapping it in a container element (such as a <p>aragraph</p>), or
- forgetting to quote an attribute value (where characters such as "%" and "/" are common, but cannot appear without surrounding quotes), or
- using XHTML-style self-closing tags (such as <meta ... />) in HTML 4.01 or earlier. To fix, remove the extra slash ('/') character. For more information about the reasons for this, see Empty elements in SGML, HTML, XML, and XHTML.
.................................................. ..........
Line 866, Column 14: literal is missing closing delimiter.<table style="
width: 100 cellspacing="3" cellpadding="3">
✉
Did you forget to close a (double) quote mark?
.................................................. ..........
I really appreciate the help! Let's bring it down to zero errors 
In regards to unique ID names, I am having a strange problem.
I have custom drop down menus in navbar and they look like this:
<td id="1" class="nav_menu_control" style="width: 81px">
(in header template)
<div class="vbmenu_popup" id="1_menu" style="display:none">
(in navbar template)
The above is default (showing errors in w3 validation) yet they work fine.
IF I change the ID each to something like below, it shows the menu title but no longer drops down the sub menu, nor shows the down arrow icon (indicating drop down menu)
<td id="menu1" class="nav_menu_control" style="width: 81px">
<div class="vbmenu_popup" id="menu1_menu" style="display:none">