btw, you have some more problems then that within your html code....
Problem 1
For starters there are here and there some hard returns after lines where they shouldn't be, so remove them:
code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"<hard return>
"http://www.w3.org/TR/html4/loose.dtd">
code:
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "',<hard return>
'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,re<hard return>
sizable=0,width=220,height=340');");
}
// End -->
Not all are wrong (the ones in html-tags), but the ones in script shouldn't be there!
Problem 2
Furthermore, and this is a very serious error, there seems to start another new html code right in the middle of the page:
code:
<td width="540"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"<hard return>
"http://www.w3.org/TR/html4/loose.dtd">
<html>
...
Problem 3
Also, in the scripts: you use
document.getSelection(), you should use
window.getSelection() instead...
Problem 4
Furthermore, you're missing a
<br>-tag here:
code:
<input type="submit" name="Submit" value="Submit"></form></font>put a <br> here<font size="1" face="10" color="#000000"><a href="/index.php?action=results">Show me the results</font>
Problem 5
This image doesn't exist:
http://www.vexonet.com/images/affiliates/dlserve.gif because you have uploaded
dlserve.GIF. Names are case sensetive. So rename the file to
dlserve.gif....
Problem 6
There is no style3-class defined anywhere....
<a href="mailto:webmaster@vexonet.com" class="style3" style="text-decoration: none">e-mail meloose the space here</a>
... ...
Check all these errors on all your pages, as they seem to occur everywhere on every page...
TIP: Do NOT trust on Internet Explorer for showing your page. It certainly DOES NOT automaticly mean that your page is ok when it shows nicely in Internet Explorer.... Also don't use 1 particular browser to check your page, use several different browsers, because each browser can show you page differently...