319 errors, but most of the errors are easy to fix.
The first thing you should do is go through your html pages and make absolutely sure that *everything* tag-wise is lowercase. You have a lot of width="blah" and height="blah" type tags that say WIDTH and HEIGHT, those need to be lowercase.
Anytime you have an ampersand, you need to escape it for it to validate, so it needs to be
CODE
&
you have a lot that are not encoded, so change any
CODE
&
to the above.
You also have a ton of
CODE
<BR>
and
<br>
tags. those all need to be:
CODE
<br />
another one thats getting you a lot is all of your image tags need to be in the format
CODE
<img src="pathtoimage/nameofimage.jpg" alt="blah" width="100" height="100" />
changing the proper variables.
once you have those cleaned up you should be down to only a few errors, and can clean it up from there.
i'm more than happy to help with validating as long as you can stand it *grins* can contact me on im as well if you want. =)
does that help?