Okay, let me try my best to explain why it would bring up the errors that you may not understand the reason behind. I know this is a thread for review, but help in creating a better site isn't bad is it?

Okay, your first error brought up by w3c validator.
" <td background="Images/Searchbar/searchbar_r1_c6.jpg"></td>" on line 81. In XHTML you cannot set a background image or color in the HTML. Instead you are supposed to use CSS. That is a more valid way. A CSS equivalent to what you are doing would be...
.td81 {
background-image: url('Images/Searchbar/searchbar_r1_c6.jpg');
}
- .td81 {
- background-image: url('Images/Searchbar/searchbar_r1_c6.jpg');
- }
...so the td would look something like...
Easy, and valid.
Your second error is on line 85. There is no action...
Why did you put " action="" " attribute in an INPUT tag? It shouldn't go there. It has to be in the <form...> tag. so the form would look something like below...
<form action=".../suggest.php">
Your third error is on line 85. There is no columns...
Attribute "columns" don't go into the tag INPUT. They go to the tag TEXTAREA.
Your fourth error is on line 85. There is no autocomplete...
I don't know of such attribute whatsoever unless it goes to your PHP. Even if you are trying to get it valid, you probably would have to keep it with that error. Looks like its part of your script that would probably be in PHP, AJAX, Flash or whatever kind of script requires that attribute. Not an error on your part.
Your fifth error is on line 85. There is no delay...
Same as above.
Your sixth error is on line 107. There is no bordercolor...
The same as background image... it has to be defined with CSS either externally or internally. Better if its external... CSS equivalent to what you are doing would be...
.table1 {
border: 1px #333333;
}
- .table1 {
- border: 1px #333333;
- }
Your seventh error is on line 124. With all of those {&'s)...
You should not have a & in your source code. Even if it's in a URL. U should substitute them with (&). Yes, even if its in URLs.
Your eighth error is on line 124 again for the same reason as above.
Your ninth error is on line 124 again for the same reason as above.
Your tenth error is on line 124 for some entity.
Don't know anything about it. Can't help.
Your eleventh error is on line 126. The same as ninth, eighth and seventh error.
Your twelfth error is on line 124 for the same reason as the tenth error. I do not know anything about it.
Hope that that would have helped you a bit
