I've knocked up a very basic (and picky) page checker
here. It shows some fundamental errors.
I'm also concerned about your on page tagging. Things like for example
Code:
<h1 class="Body"><span class="BodyBold">Welcome to Crane ‘the office supplies people’</span></h1>
Would be better as
Code:
<h1>Welcome to Crane - The Office Supplies People</h1>
Use CSS to make the H1 tags look the way you want them to look.
You are also using a table based layout. This puts lots of extra tags on a page - again making it harder for spiders to understand.
This is just a
very quick heads up on
some of the issues.
d