Markup Validation Service v0.6.2

:
Content-Type: text/html
: utf-8
: HTML 4.01 Transitional
Errors: 223
Revalidate With Options
:
Note:
The URI you gave me, <http://yahoo.com/>, returned a redirect to <http://www.yahoo.com/>.
No Character Encoding Found! Falling back to UTF-8.

I was not able to extract a character encoding labeling from any of the valid sources for such information. Without encoding information it is impossible to reliably validate the document. I'm falling back to the "UTF-8" encoding and will attempt to perform the validation, but this is likely to fail for all non-trivial documents.

The sources I tried to find encoding information include:

  • The HTTP Content-Type field.
  • The XML Declaration.
  • The HTML "META" element.

And I even tried to autodetect it using the algorithm defined in Appendix F of the XML 1.0 Recommendation.

Since none of these sources yielded any usable information, I will not be able to reliably validate this document. Sorry. Please make sure you specify the character encoding in use.

Specifying a character encoding is normally done in the web server configuration file or administration program. The W3C I18N Activity has collected a few tips on how to do this in popular web server implementations.

IANA maintains the list of official names for character sets and the WDG has some information to help you correctly specify the character encoding.

To quickly check whether the document would validate after addressing the missing character encoding information, you can use the "Encoding" form control (accesskey "2") earlier in the page to force an encoding override to take effect. "iso-8859-1" (Western Europe and North America) and "utf-8" (Universal, but not commonly used in legacy documents) are common encodings if you are not sure what encoding to choose.

No DOCTYPE Declaration Found! Falling Back to HTML 4.01 Transitional

A DOCTYPE Declaration is mandatory for most current markup languages and without one it is impossible to reliably validate this document. I am falling back to "HTML 4.01 Transitional" and will attempt to validate the document anyway, but this is very likley to produce spurious error messages for most non-trivial documents.

You should place a DOCTYPE declaration as the very first thing in your HTML document. For example, for a typical XHTML 1.0 document:

      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
        <head>
          <title>Title</title>
        </head>

        <body>
          <!-- ... body of document ... -->
        </body>
      </html>
    

For XML documents, you may also wish to include an "XML Declaration" even before the DOCTYPE Declaration, but this is not well supported in older browsers. More information about this can be found in the XHTML 1.0 Recommendation.

The W3C QA Activity maintains a List of Valid Doctypes that you can choose from, and the WDG maintains a document on "Choosing a DOCTYPE".

This page is not Valid HTML 4.01 Transitional!

Below are the results of attempting to parse this document with an SGML parser.

  1. Line 1, column 0: no document type declaration; implying "<!DOCTYPE HTML SYSTEM>"
      <html><head>
      ^

    Help Wanted! Can you think of a better explanation for this error message? Then please let us know by sending a message to the www-validator@w3.org list (be sure to quote the message number: #344).

    The checked page did not contain a document type ("DOCTYPE") declaration. The Validator has tried to validate with the HTML 4.01 Transitional DTD, but this is quite likely to be incorrect and will generate a large number of incorrect error messages. It is highly recommended that you insert the proper DOCTYPE declaration in your document -- instructions for doing this are given above -- and it is necessary to have this declaration before the page can be declared to be valid.

  2. Line 6, column 22: document type does not allow element "STYLE" here
      <style type="text/css"><!--
                            ^

    Help Wanted! Can you think of a better explanation for this error message? Then please let us know by sending a message to the www-validator@w3.org list (be sure to quote the message number: #64).

    The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested tags -- such as a "style" element in the "head" section instead of inside "body" -- or two elements that overlap (which is not allowed).

  3. Line 11, column 27: required attribute "TYPE" not specified
      <script language=javascript><!--
                                 ^

    Help Wanted! Can you think of a better explanation for this error message? Then please let us know by sending a message to the www-validator@w3.org list (be sure to quote the message number: #127).

    The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.

  4. Line 13, column 27: required attribute "TYPE" not specified
      <script language=javascript>
                                 ^
  5. Line 33, column 6: end tag for element "HEAD" which is not open
      </head>
            ^

    Help Wanted! Can you think of a better explanation for this error message? Then please let us know by sending a message to the www-validator@w3.org list (be sure to quote the message number: #79).

    The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element beeing used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.

  6. Line 34, column 11: there is no attribute "NAME"
      <body name=bod topmargin=7 marginheight=7>
                 ^

    Help Wanted! Can you think of a better explanation for this error message? Then please let us know by sending a message to the www-validator@w3.org list (be sure to quote the message number: #108).

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

  7. Line 34, column 25: there is no attribute "TOPMARGIN"
      <body name=bod topmargin=7 marginheight=7>
                               ^
  8. Line 34, column 40: there is no attribute "MARGINHEIGHT"
      <body name=bod topmargin=7 marginheight=7>
                                              ^
  9. Line 34, column 41: document type does not allow element "BODY" here
      <body name=bod topmargin=7 marginheight=7>
                                               ^
  10. Line 36, column 62: character data is not allowed here
      ... Yahoo!" coords="44,0,106,47" href=r/i1><area alt=Finance coords="121,0,170,4
                                              ^

    Help Wanted! This message (#63) has no explanation yet. If you can think of a succinct way to explain the possible situations that will trigger this error and how to fix it, please consider writing it down and sending it to the www-validator@w3.org list.

  11. Line 36, column 420: required attribute "ALT" not specified
      ...ght=48 border=0 usemap="#m" src=http://us.i1.yimg.com/us.yimg.com/i/ww/m6v8b.
                                              ^
  12. Line 36, column 618: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
      ... border=0 cellspacing=0 cellpadding=0><tr><td><a href=s/97661><img src="http:
                                              ^

    Help Wanted! This message (#65) has no explanation yet. If you can think of a succinct way to explain the possible situations that will trigger this error and how to fix it, please consider writing it down and sending it to the www-validator@w3.org list.

  13. Line 36, column 741: required attribute "ALT" not specified
      ...coon.gif" width=16 height=16 border=0></a></td><td nowrap><font face=arial si
                                              ^
  14. Line 43, column 83: there is no attribute "TYPE"
      ...order=0><tr><td width=1><spacer type=block width=1 height=1></td><td width=56
                                              ^
  15. Line 43, column 95: there is no attribute "WIDTH"
      ...<td width=1><spacer type=block width=1 height=1></td><td width=568 bgcolor=66
                                              ^
  16. Line 43, column 104: there is no attribute "HEIGHT"
      ...=1><spacer type=block width=1 height=1></td><td width=568 bgcolor=666666 heig
                                              ^
  17. Line 43, column 105: element "SPACER" undefined
      ...1><spacer type=block width=1 height=1></td><td width=568 bgcolor=666666 heigh
                                              ^

    Help Wanted! This message (#76) has no explanation yet. If you can think of a succinct way to explain the possible situations that will trigger this error and how to fix it, please consider writing it down and sending it to the www-validator@w3.org list.

  18. Line 43, column 184: element "SPACER" undefined
      ...1><spacer type=block width=1 height=1></td><td width=1><spacer type=block wid
                                              ^
  19. Line 43, column 237: element "SPACER" undefined
      ...1><spacer type=block width=1 height=1></td></tr><tr><td width=1 bgcolor=66666
                                              ^
  20. Line 43, column 314: element "SPACER" undefined
      ...6><spacer type=block width=1 height=1></td><td><table width=100% cellpadding=
                                              ^
  21. Line 43, column 340: an attribute value must be a literal unless it contains only name characters
      ...=1 height=1></td><td><table width=100% cellpadding=5 cellspacing=0 border=0 b
                                              ^

    Help Wanted! This message (#82) has no explanation yet. If you can think of a succinct way to explain the possible situations that will trigger this error and how to fix it, please consider writing it down and sending it to the www-validator@w3.org list.

  22. Line 44, column 363: reference to non-SGML character
      ...nowrap><font face=arial size=-2>&#149; <a href=r/so>Advanced</a><br>&#149;
                                              ^

    Help Wanted! This message (#410) has no explanation yet. If you can think of a succinct way to explain the possible situations that will trigger this error and how to fix it, please consider writing it down and sending it to the www-validator@w3.org list.

  23. Line 44, column 399: reference to non-SGML character
      ...9; <a href=r/so>Advanced</a><br>&#149;
                                              ^
  24. Line 46, column 85: element "SPACER" undefined
      ...6><spacer type=block width=1 height=1></td></tr><tr><td width=1><spacer type=
                                              ^
  25. Line 46, column 147: element "SPACER" undefined
      ...1><spacer type=block width=1 height=1></td><td bgcolor=666666 height=1><space
                                              ^
  26. Line 46, column 216: element "SPACER" undefined
      ...1><spacer type=block width=1 height=1></td><td width=1><spacer type=block wid
                                              ^
  27. Line 46, column 269: element "SPACER" undefined
      ...1><spacer type=block width=1 height=1></td></tr></table><table border=0><tr><
                                              ^
  28. Line 46, column 356: element "SPACER" undefined
      ...5><spacer type=block width=1 height=1></td></tr></table>
                                              ^
  29. Line 49, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellspacing=0 border=0>
                      ^
  30. Line 50, column 183: required attribute "ALT" not specified
      ...tr><td><a href=s/87261><img src=http://us.i1.yimg.com/us.yimg.com/i/mntl/cmp/
                                              ^
  31. Line 50, column 265: end tag for element "A" which is not open
      ...s.gif height=16 width=16 border=0></a></td><td nowrap><font face=arial size=-
                                              ^
  32. Line 51, column 141: an attribute value must be a literal unless it contains only name characters
      ...tr><tr><td colspan=3><table width=100% cellpadding=0 cellspacing=0 border=0 b
                                              ^
  33. Line 77, column 34: an attribute value must be a literal unless it contains only name characters
      <tr><td colspan=3><table width=100% cellpadding=0 cellspacing=0 border=0 bgcolor
                                        ^
  34. Line 106, column 803: reference to non-SGML character
      ...nowrap><font size=-1 face=arial>&#149; <a href=s/91463><b>Buy</b></a><br>&#14
                                              ^
  35. Line 106, column 844: reference to non-SGML character
      ... href=s/91463><b>Buy</b></a><br>&#149; <a href=s/91464><b>Sell</b></a><br>&#1
                                              ^
  36. Line 106, column 886: reference to non-SGML character
      ...href=s/91464><b>Sell</b></a><br>&#149; <a href=s/91465><b>Rent</b></a>&nbsp;<
                                              ^
  37. Line 106, column 1023: reference to non-SGML character
      ...nowrap><font size=-1 face=arial>&#149; <a href=s/95407>Refinance a Mortgage</
                                              ^
  38. Line 106, column 1074: reference to non-SGML character
      ...407>Refinance a Mortgage</a><br>&#149; <a href=s/91467>Get a Free Credit Repo
                                              ^
  39. Line 106, column 1129: reference to non-SGML character
      ...Get a Free Credit Report</a><br>&#149; <a href=s/91468>Find a Mover</a></font
                                              ^
  40. Line 112, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=4 cellspacing=0 border=0 bgcolor=dfdfdf><tr><td al
                      ^
  41. Line 113, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=0 cellspacing=0 border=0 bgcolor=999999><tr><td he
                      ^
  42. Line 114, column 23: an attribute value must be a literal unless it contains only name characters
      <center><table width=95% border=0 cellspacing=0 cellpadding=2><tr>
                             ^
  43. Line 115, column 12: an attribute value must be a literal unless it contains only name characters
      <td width=30% valign=top nowrap><font face=arial size=-1>
                  ^
  44. Line 116, column 8: reference to non-SGML character
      <b>&#149;</b>&nbsp;<a href=r/h9>Web Hosting</a><br>
              ^
  45. Line 117, column 8: reference to non-SGML character
      <b>&#149;</b>&nbsp;<a href=r/e9>E-commerce</a>
              ^
  46. Line 119, column 12: an attribute value must be a literal unless it contains only name characters
      <td width=38% valign=top nowrap><font face=arial size=-1>
                  ^
  47. Line 120, column 8: reference to non-SGML character
      <b>&#149;</b>&nbsp;<a href=r/d9>Domain Registration</a><br>
              ^
  48. Line 121, column 8: reference to non-SGML character
      <b>&#149;</b>&nbsp;<a href=r/m9>Business Mail</a>
              ^
  49. Line 123, column 12: an attribute value must be a literal unless it contains only name characters
      <td width=32% valign=top nowrap><font face=arial size=-1>
                  ^
  50. Line 124, column 8: reference to non-SGML character
      <b>&#149;</b>&nbsp;<a href=r/p9>Marketing Services</a><br>
              ^
  51. Line 125, column 8: reference to non-SGML character
      <b>&#149;</b>&nbsp;<a href=r/s9>Sell on Yahoo!</a>
              ^
  52. Line 129, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=4 cellspacing=0 border=0 bgcolor=ffe8ba>
                      ^
  53. Line 132, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=0 cellspacing=0 border=0 bgcolor=bfbebe><tr><td he
                      ^
  54. Line 135, column 15: an attribute value must be a literal unless it contains only name characters
      <table width=95% border=0 cellspacing=0 cellpadding=2>
                     ^
  55. Line 137, column 12: an attribute value must be a literal unless it contains only name characters
      <td width=48% valign=top nowrap><font face=arial>
                  ^
  56. Line 152, column 23: an attribute value must be a literal unless it contains only name characters
      <td valign=top width=52% nowrap><font face=arial>
                             ^
  57. Line 173, column 241: required attribute "ALT" not specified
      ...ahoo.gif" border=0 width=84 height=28></a>
                                              ^
  58. Line 175, column 32: required attribute "ALT" not specified
      </td><td width=10><img src=http://us.i1.yimg.com/us.yimg.com/i/space.gif width=1
                                      ^
  59. Line 176, column 53: an attribute value must be a literal unless it contains only name characters
      ...cellspacing=0 cellpadding=0 width=100%><tr><td bgcolor=4d99e5 height=15 rowsp
                                              ^
  60. Line 176, column 335: required attribute "ALT" not specified
      ...9e5 valign=top><img id=cti1 src=http://us.i1.yimg.com/us.yimg.com/i/us/nt/tr1
                                              ^
  61. Line 176, column 442: an attribute value must be a literal unless it contains only name characters
      ...alt=" "></td><td align=right width=90%><font face=verdana size=-2><b><a href=
                                              ^
  62. Line 176, column 702: an attribute value must be a literal unless it contains only name characters
      ...cellpadding=0 cellspacing=0 width=100% bgcolor=e5f6ff class=yhmpabd><tr><td w
                                              ^
  63. Line 176, column 764: required attribute "ALT" not specified
      ...mpabd><tr><td width=80><img src=http://us.i1.yimg.com/us.yimg.com/i/ww/mail.g
                                              ^
  64. Line 178, column 53: an attribute value must be a literal unless it contains only name characters
      ...ng=0 cellpadding=0 border=0 width=100%><tr><td><table width=300 cellpadding=1
                                              ^
  65. Line 178, column 346: element "SPACER" undefined
      ... height=3><spacer type=block height=3></td><td width=62 rowspan=3 align=right
                                              ^
  66. Line 178, column 639: element "SPACER" undefined
      ...n=2 nowrap><spacer type=block width=1></td><td><a href=s/97961><img src="http
                                              ^
  67. Line 179, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=0 cellspacing=0 border=0>
                      ^
  68. Line 180, column 114: an attribute value must be a literal unless it contains only name characters
      ...bottom rowspan=2 align=right width=90%><font face=verdana size=-2 style="font
                                              ^
  69. Line 181, column 70: "IF" is not a reserved name
      ...script>ie5=1;</script><![endif]--><![if !IE]><script language=javascript>ie5=
                                              ^

    Help Wanted! This message (#31) has no explanation yet. If you can think of a succinct way to explain the possible situations that will trigger this error and how to fix it, please consider writing it down and sending it to the www-validator@w3.org list.

  70. Line 181, column 105: required attribute "TYPE" not specified
      ...![if !IE]><script language=javascript>ie5=0;</script><![endif]>
                                              ^
  71. Line 181, column 124: "ENDIF" is not a reserved name
      ...anguage=javascript>ie5=0;</script><![endif]>
                                              ^
  72. Line 182, column 27: required attribute "TYPE" not specified
      <script language=javascript>
                                 ^
  73. Line 201, column 104: end tag for element "NOBR" which is not open
      ...getMonth()]+" "+now.getDate()+"</nobr>";
                                              ^
  74. Line 202, column 48: end tag for "SCRIPT" omitted, but its declaration does not permit this
      document.write("<font color=black>"+time+"</font>");
                                                      ^

    Help Wanted! This message (#68) has no explanation yet. If you can think of a succinct way to explain the possible situations that will trigger this error and how to fix it, please consider writing it down and sending it to the www-validator@w3.org list.

  75. Line 182, column 0: start tag was here
      <script language=javascript>
      ^
  76. Line 203, column 8: end tag for element "SCRIPT" which is not open
      </script>
              ^
  77. Line 204, column 6: end tag for element "FONT" which is not open
      </font></td></tr>
            ^
  78. Line 205, column 273: required attribute "ALT" not specified
      ...2cf valign=top><img id=cti2 src=http://us.i1.yimg.com/us.yimg.com/i/us/nt/tr1
                                              ^
  79. Line 208, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=8 cellspacing=0 border=0 bgcolor=f1f1fd class=yhmn
                      ^
  80. Line 210, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellspacing=0 cellpadding=1 border=0>
                      ^
  81. Line 211, column 52: reference to non-SGML character
      ...top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=ar
                                              ^
  82. Line 211, column 165: cannot generate system identifier for general entity "u"
      ...story.news.yahoo.com/news?tmpl=story&u=/ap/20030721/ap_on_re_mi_ea/iraq&cid=5
                                              ^

    Help Wanted! This message (#338) has no explanation yet. If you can think of a succinct way to explain the possible situations that will trigger this error and how to fix it, please consider writing it down and sending it to the www-validator@w3.org list.

  83. Line 211, column 165: general entity "u" not defined and no default entity
      ...story.news.yahoo.com/news?tmpl=story&u=/ap/20030721/ap_on_re_mi_ea/iraq&cid=5
                                              ^

    Help Wanted! This message (#25) has no explanation yet. If you can think of a succinct way to explain the possible situations that will trigger this error and how to fix it, please consider writing it down and sending it to the www-validator@w3.org list.

  84. Line 211, column 166: reference to entity "u" for which no system identifier could be generated
      ...tory.news.yahoo.com/news?tmpl=story&u=/ap/20030721/ap_on_re_mi_ea/iraq&cid=54
                                              ^

    Help Wanted! This message (#325) has no explanation yet. If you can think of a succinct way to explain the possible situations that will trigger this error and how to fix it, please consider writing it down and sending it to the www-validator@w3.org list.

  85. Line 211, column 164: entity was defined here
      .../story.news.yahoo.com/news?tmpl=story&u=/ap/20030721/ap_on_re_mi_ea/iraq&cid=
                                              ^
  86. Line 211, column 200: cannot generate system identifier for general entity "cid"
      ...y&u=/ap/20030721/ap_on_re_mi_ea/iraq&cid=540&ncid=716">Gen. to establish arme
                                              ^
  87. Line 211, column 200: general entity "cid" not defined and no default entity
      ...y&u=/ap/20030721/ap_on_re_mi_ea/iraq&cid=540&ncid=716">Gen. to establish arme
                                              ^
  88. Line 211, column 203: reference to entity "cid" for which no system identifier could be generated
      ...=/ap/20030721/ap_on_re_mi_ea/iraq&cid=540&ncid=716">Gen. to establish armed m
                                              ^
  89. Line 211, column 199: entity was defined here
      ...ry&u=/ap/20030721/ap_on_re_mi_ea/iraq&cid=540&ncid=716">Gen. to establish arm
                                              ^
  90. Line 211, column 208: cannot generate system identifier for general entity "ncid"
      ...20030721/ap_on_re_mi_ea/iraq&cid=540&ncid=716">Gen. to establish armed militi
                                              ^
  91. Line 211, column 208: general entity "ncid" not defined and no default entity
      ...20030721/ap_on_re_mi_ea/iraq&cid=540&ncid=716">Gen. to establish armed militi
                                              ^
  92. Line 211, column 212: reference to entity "ncid" for which no system identifier could be generated
      ...0721/ap_on_re_mi_ea/iraq&cid=540&ncid=716">Gen. to establish armed militia in
                                              ^
  93. Line 211, column 207: entity was defined here
      .../20030721/ap_on_re_mi_ea/iraq&cid=540&ncid=716">Gen. to establish armed milit
                                              ^
  94. Line 211, column 330: reference to non-SGML character
      ...top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=ar
                                              ^
  95. Line 211, column 444: reference to entity "u" for which no system identifier could be generated
      ...tory.news.yahoo.com/news?tmpl=story&u=/ap/20030721/ap_on_go_co/us_intelligenc
                                              ^
  96. Line 211, column 164: entity was defined here
      .../story.news.yahoo.com/news?tmpl=story&u=/ap/20030721/ap_on_re_mi_ea/iraq&cid=
                                              ^
  97. Line 211, column 489: reference to entity "cid" for which no system identifier could be generated
      ...30721/ap_on_go_co/us_intelligence&cid=512&ncid=716">Senator prods Bush on pre
                                              ^
  98. Line 211, column 199: entity was defined here
      ...ry&u=/ap/20030721/ap_on_re_mi_ea/iraq&cid=540&ncid=716">Gen. to establish arm
                                              ^
  99. Line 211, column 498: reference to entity "ncid" for which no system identifier could be generated
      ...on_go_co/us_intelligence&cid=512&ncid=716">Senator prods Bush on prewar Iraq 
                                              ^
  100. Line 211, column 207: entity was defined here
      .../20030721/ap_on_re_mi_ea/iraq&cid=540&ncid=716">Gen. to establish armed milit
                                              ^
  101. Line 211, column 617: reference to non-SGML character
      ...top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=ar
                                              ^
  102. Line 211, column 731: reference to entity "u" for which no system identifier could be generated
      ...tory.news.yahoo.com/news?tmpl=story&u=/ap/20030720/ap_on_re_mi_ea/britain_wea
                                              ^
  103. Line 211, column 164: entity was defined here
      .../story.news.yahoo.com/news?tmpl=story&u=/ap/20030721/ap_on_re_mi_ea/iraq&cid=
                                              ^
  104. Line 211, column 787: reference to entity "cid" for which no system identifier could be generated
      ..._re_mi_ea/britain_weapons_adviser&cid=540&ncid=716">Blair won't resign over a
                                              ^
  105. Line 211, column 199: entity was defined here
      ...ry&u=/ap/20030721/ap_on_re_mi_ea/iraq&cid=540&ncid=716">Gen. to establish arm
                                              ^
  106. Line 211, column 796: reference to entity "ncid" for which no system identifier could be generated
      .../britain_weapons_adviser&cid=540&ncid=716">Blair won't resign over adviser's 
                                              ^
  107. Line 211, column 207: entity was defined here
      .../20030721/ap_on_re_mi_ea/iraq&cid=540&ncid=716">Gen. to establish armed milit
                                              ^
  108. Line 211, column 916: reference to non-SGML character
      ...top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=ar
                                              ^
  109. Line 211, column 1098: reference to non-SGML character
      ...top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=ar
                                              ^
  110. Line 211, column 1275: reference to non-SGML character
      ...top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=ar
                                              ^
  111. Line 211, column 1456: reference to non-SGML character
      ...top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=ar
                                              ^
  112. Line 214, column 25: there is no attribute "COLOR"
      <hr noshade size=1 color=d0d3f2><font face=verdana size=-2><b><a href=r/xn>News<
                               ^
  113. Line 218, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=0 cellspacing=0 border=0 class=yhmnwbd>
                      ^
  114. Line 220, column 44: required attribute "ALT" not specified
      ...olor=9b72cf valign=top><img src=http://us.i1.yimg.com/us.yimg.com/i/ww/tri2.g
                                              ^
  115. Line 221, column 24: an attribute value must be a literal unless it contains only name characters
      <td align=right width=90% bgcolor=f1f1fd><table><tr><td></td></tr></table></td>
                              ^
  116. Line 225, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=8 cellspacing=0 border=0 bgcolor=f1f1fd class=yhmn
                      ^
  117. Line 227, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellspacing=0 cellpadding=1 border=0>
                      ^
  118. Line 228, column 52: reference to non-SGML character
      ...top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=ar
                                              ^
  119. Line 228, column 252: reference to non-SGML character
      ...top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=ar
                                              ^
  120. Line 228, column 454: reference to non-SGML character
      ...top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=ar
                                              ^
  121. Line 228, column 644: reference to non-SGML character
      ...top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=ar
                                              ^
  122. Line 235, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=0 cellspacing=0 border=0 class=yhmnwbd>
                      ^
  123. Line 237, column 44: required attribute "ALT" not specified
      ...olor=9b72cf valign=top><img src=http://us.i1.yimg.com/us.yimg.com/i/ww/tri2.g
                                              ^
  124. Line 237, column 135: an attribute value must be a literal unless it contains only name characters
      ...ight=15></td><td align=right width=90% bgcolor=f1f1fd><table><tr><td></td></t
                                              ^
  125. Line 241, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=8 cellspacing=0 border=0 bgcolor=f1f1fd class=yhmn
                      ^
  126. Line 243, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellspacing=0 cellpadding=1 border=0>
                      ^
  127. Line 244, column 52: reference to non-SGML character
      ...top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=ar
                                              ^
  128. Line 244, column 160: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
      ...lpadding=0 cellspacing=0 width="100%"><tr><td><font face=arial size=-1><a hre
                                              ^
  129. Line 245, column 56: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
      ...0 cellPadding=4 width="100%" border=0><tr><td><a href=s/98301><img height=50 
                                              ^
  130. Line 245, column 518: reference to non-SGML character
      ...top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=ar
                                              ^
  131. Line 246, column 53: an attribute value must be a literal unless it contains only name characters
      <table border=0 cellpadding=4 cellspacing=0 width=100%>
                                                           ^
  132. Line 246, column 54: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
      <table border=0 cellpadding=4 cellspacing=0 width=100%>
                                                            ^
  133. Line 247, column 39: required attribute "ALT" not specified
      <tr><td><a href=s/97704><img  src=http://us.i1.yimg.com/us.yimg.com/i/us/pi/50/2
                                             ^
  134. Line 247, column 151: end tag for element "A" which is not open
      ...ght=50 border=0  alt="Ring Tones"></a></td><td><font face=verdana size=-2><a 
                                              ^
  135. Line 256, column 14: required attribute "ALT" not specified
      <img src=http://us.i1.yimg.com/us.yimg.com/i/space.gif width=235 height=1><br>
                    ^
  136. Line 261, column 28: an attribute value must be a literal unless it contains only name characters
      <hr noshade size=1 width=100% color=cccccc>
                                  ^
  137. Line 262, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=4 cellspacing=0 border=0>
                      ^
  138. Line 265, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=2 cellspacing=4 border=0>
                      ^
  139. Line 271, column 12: an attribute value must be a literal unless it contains only name characters
      <td width=16% nowrap><font face=arial size=-1>
                  ^
  140. Line 272, column 5: reference to non-SGML character
      &#149; <a href=r/nc>Catalan</a><br>
           ^
  141. Line 273, column 5: reference to non-SGML character
      &#149; <a href=r/dk>Denmark</a><br>
           ^
  142. Line 274, column 5: reference to non-SGML character
      &#149; <a href=r/fr>France</a><br>
           ^
  143. Line 275, column 5: reference to non-SGML character
      &#149; <a href=r/de>Germany</a><br>
           ^
  144. Line 276, column 5: reference to non-SGML character
      &#149; <a href=r/it>Italy</a>
           ^
  145. Line 277, column 24: an attribute value must be a literal unless it contains only name characters
      </font></td><td width=16% nowrap><font face=arial size=-1>
                              ^
  146. Line 278, column 5: reference to non-SGML character
      &#149; <a href=r/no>Norway</a><br>
           ^
  147. Line 279, column 5: reference to non-SGML character
      &#149; <a href=r/es>Spain</a><br>
           ^
  148. Line 280, column 5: reference to non-SGML character
      &#149; <a href=r/se>Sweden</a><br>
           ^
  149. Line 281, column 5: reference to non-SGML character
      &#149; <a href=r/uk>UK &amp; Ireland</a>
           ^
  150. Line 282, column 24: an attribute value must be a literal unless it contains only name characters
      </font></td><td width=18% nowrap><font face=arial size=-1>
                              ^
  151. Line 283, column 5: reference to non-SGML character
      &#149; <a href=r/ai>Asia</a><br>
           ^
  152. Line 284, column 5: reference to non-SGML character
      &#149; <a href=r/an>Australia &amp; NZ</a><br>
           ^
  153. Line 285, column 5: reference to non-SGML character
      &#149; <a href=r/cc>China</a><br>
           ^
  154. Line 286, column 5: reference to non-SGML character
      &#149; <a href=r/hk>Hong Kong</a><br>
           ^
  155. Line 287, column 5: reference to non-SGML character
      &#149; <a href=r/id>India</a>
           ^
  156. Line 288, column 24: an attribute value must be a literal unless it contains only name characters
      </font></td><td width=18% nowrap><font face=arial size=-1>
                              ^
  157. Line 289, column 5: reference to non-SGML character
      &#149; <a href=r/jp>Japan</a><br>
           ^
  158. Line 290, column 5: reference to non-SGML character
      &#149; <a href=r/kr>Korea</a><br>
           ^
  159. Line 291, column 5: reference to non-SGML character
      &#149; <a href=r/sg>Singapore</a><br>
           ^
  160. Line 292, column 5: reference to non-SGML character
      &#149; <a href=r/tw>Taiwan</a>
           ^
  161. Line 293, column 24: an attribute value must be a literal unless it contains only name characters
      </font></td><td width=16% nowrap><font face=arial size=-1>
                              ^
  162. Line 294, column 5: reference to non-SGML character
      &#149; <a href=r/ag>Argentina</a><br>
           ^
  163. Line 295, column 5: reference to non-SGML character
      &#149; <a href=r/br>Brazil</a><br>
           ^
  164. Line 296, column 5: reference to non-SGML character
      &#149; <a href=r/cd>Canada</a>
           ^
  165. Line 297, column 24: an attribute value must be a literal unless it contains only name characters
      </font></td><td width=16% nowrap><font face=arial size=-1>
                              ^
  166. Line 298, column 5: reference to non-SGML character
      &#149; <a href=r/mx>Mexico</a><br>
           ^
  167. Line 299, column 5: reference to non-SGML character
      &#149; <a href=r/cn>U.S. in Chinese</a><br>
           ^
  168. Line 300, column 5: reference to non-SGML character
      &#149; <a href=r/ep>U.S. in Spanish</a>
           ^
  169. Line 304, column 28: an attribute value must be a literal unless it contains only name characters
      <hr noshade size=1 width=100% color=cccccc>
                                  ^
  170. Line 305, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=4 cellspacing=0 border=0>
                      ^
  171. Line 308, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=2 cellspacing=4 border=0>
                      ^
  172. Line 315, column 12: an attribute value must be a literal unless it contains only name characters
      <td width=25% nowrap><font face=arial size=-1>
                  ^
  173. Line 316, column 5: reference to non-SGML character
      &#149; <a href=r/eu>Education</a><br>
           ^
  174. Line 317, column 5: reference to non-SGML character
      &#149; <a href=r/yh>Health</a><br>
           ^
  175. Line 318, column 5: reference to non-SGML character
      &#149; <a href=r/lt>Lottery</a><br>
           ^
  176. Line 319, column 5: reference to non-SGML character
      &#149; <a href=r/pf>Members</a><br>
           ^
  177. Line 320, column 5: reference to non-SGML character
      &#149; <a href=r/pt>Pets</a><br>
           ^
  178. Line 321, column 5: reference to non-SGML character
      &#149; <a href=r/k1>Yahooligans!</a>
           ^
  179. Line 322, column 24: an attribute value must be a literal unless it contains only name characters
      </font></td><td width=25% nowrap><font face=arial size=-1>
                              ^
  180. Line 323, column 5: reference to non-SGML character
      &#149; <a href=r/dr>Domain Registration</a><br>
           ^
  181. Line 324, column 5: reference to non-SGML character
      &#149; <a href=r/sl>Sell on Yahoo!</a><br>
           ^
  182. Line 325, column 5: reference to non-SGML character
      &#149; <a href=r/sb>Small Biz Center</a><br>
           ^
  183. Line 326, column 5: reference to non-SGML character
      &#149; <a href=r/s3>Store Building</a><br>
           ^
  184. Line 327, column 5: reference to non-SGML character
      &#149; <a href=r/ws>Web Hosting</a>
           ^
  185. Line 328, column 24: an attribute value must be a literal unless it contains only name characters
      </font></td><td width=25% nowrap><font face=arial size=-1>
                              ^
  186. Line 329, column 5: reference to non-SGML character
      &#149; <a href=r/et>Enterprise Solutions</a><br>
           ^
  187. Line 330, column 5: reference to non-SGML character
      &#149; <a href=r/ee>Enterprise Messenger</a><br>
           ^
  188. Line 331, column 5: reference to non-SGML character
      &#149; <a href=r/ef>Enterprise My Yahoo!</a><br>
           ^
  189. Line 332, column 5: reference to non-SGML character
      &#149; <a href=r/ew>Professional Services</a><br>
           ^
  190. Line 333, column 5: reference to non-SGML character
      &#149; <a href=r/rx>Resumix</a>
           ^
  191. Line 334, column 24: an attribute value must be a literal unless it contains only name characters
      </font></td><td width=25% nowrap><font face=arial size=-1>
                              ^
  192. Line 335, column 5: reference to non-SGML character
      &#149; <a href=r/bk>Banking</a><br>
           ^
  193. Line 336, column 5: reference to non-SGML character
      &#149; <a href=r/b2>Bill Pay</a><br>
           ^
  194. Line 337, column 5: reference to non-SGML character
      &#149; <a href=r/fm>Money Manager</a><br>
           ^
  195. Line 338, column 5: reference to non-SGML character
      &#149; <a href=r/is>Insurance</a><br>
           ^
  196. Line 339, column 5: reference to non-SGML character
      &#149; <a href=r/ln>Loans</a><br>
           ^
  197. Line 340, column 5: reference to non-SGML character
      &#149; <a href=r/tc>Taxes</a>
           ^
  198. Line 345, column 28: an attribute value must be a literal unless it contains only name characters
      <hr noshade size=1 width=100% color=cccccc>
                                  ^
  199. Line 348, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=0 cellspacing=0 border=0 bgcolor=cccccc><tr><td he
                      ^
  200. Line 349, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=10 cellspacing=0 border=0 bgcolor=eeeeee>
                      ^
  201. Line 353, column 455: cannot generate system identifier for general entity "p"
      ....yahoo.com/search/news?c=news_photos&p=">News Photos<option value="http://edu
                                              ^
  202. Line 353, column 455: general entity "p" not defined and no default entity
      ....yahoo.com/search/news?c=news_photos&p=">News Photos<option value="http://edu
                                              ^
  203. Line 353, column 456: reference to entity "p" for which no system identifier could be generated
      ...yahoo.com/search/news?c=news_photos&p=">News Photos<option value="http://educ
                                              ^
  204. Line 353, column 454: entity was defined here
      ...s.yahoo.com/search/news?c=news_photos&p=">News Photos<option value="http://ed
                                              ^
  205. Line 353, column 606: reference to entity "p" for which no system identifier could be generated
      ...rch.shopping.yahoo.com/search?P=all&p=">Shopping<option value="http://yp.yaho
                                              ^
  206. Line 353, column 454: entity was defined here
      ...s.yahoo.com/search/news?c=news_photos&p=">News Photos<option value="http://ed
                                              ^
  207. Line 353, column 680: cannot generate system identifier for general entity "zip"
      ...ahoo.com/py/ypResults.py?Pyt=TFour11&zip=&stp=a&stx=">Yellow Pages</select>&n
                                              ^
  208. Line 353, column 680: general entity "zip" not defined and no default entity
      ...ahoo.com/py/ypResults.py?Pyt=TFour11&zip=&stp=a&stx=">Yellow Pages</select>&n
                                              ^
  209. Line 353, column 683: reference to entity "zip" for which no system identifier could be generated
      ...o.com/py/ypResults.py?Pyt=TFour11&zip=&stp=a&stx=">Yellow Pages</select>&nbsp
                                              ^
  210. Line 353, column 679: entity was defined here
      ...yahoo.com/py/ypResults.py?Pyt=TFour11&zip=&stp=a&stx=">Yellow Pages</select>&
                                              ^
  211. Line 353, column 685: cannot generate system identifier for general entity "stp"
      ...com/py/ypResults.py?Pyt=TFour11&zip=&stp=a&stx=">Yellow Pages</select>&nbsp;&
                                              ^
  212. Line 353, column 685: general entity "stp" not defined and no default entity
      ...com/py/ypResults.py?Pyt=TFour11&zip=&stp=a&stx=">Yellow Pages</select>&nbsp;&
                                              ^
  213. Line 353, column 688: reference to entity "stp" for which no system identifier could be generated
      .../py/ypResults.py?Pyt=TFour11&zip=&stp=a&stx=">Yellow Pages</select>&nbsp;&nbs
                                              ^
  214. Line 353, column 684: entity was defined here
      ....com/py/ypResults.py?Pyt=TFour11&zip=&stp=a&stx=">Yellow Pages</select>&nbsp;
                                              ^
  215. Line 353, column 691: cannot generate system identifier for general entity "stx"
      .../ypResults.py?Pyt=TFour11&zip=&stp=a&stx=">Yellow Pages</select>&nbsp;&nbsp;<
                                              ^
  216. Line 353, column 691: general entity "stx" not defined and no default entity
      .../ypResults.py?Pyt=TFour11&zip=&stp=a&stx=">Yellow Pages</select>&nbsp;&nbsp;<
                                              ^
  217. Line 353, column 694: reference to entity "stx" for which no system identifier could be generated
      ...Results.py?Pyt=TFour11&zip=&stp=a&stx=">Yellow Pages</select>&nbsp;&nbsp;</td
                                              ^
  218. Line 353, column 690: entity was defined here
      ...y/ypResults.py?Pyt=TFour11&zip=&stp=a&stx=">Yellow Pages</select>&nbsp;&nbsp;
                                              ^
  219. Line 353, column 769: reference to non-SGML character
      ...td><td><font face=arial size=-2>&#149;&nbsp;<a href=r/o1>Advanced</a><br>&#14
                                              ^
  220. Line 353, column 810: reference to non-SGML character
      ...sp;<a href=r/o1>Advanced</a><br>&#149;&nbsp;<a href=r/sz>Preferences</a></fon
                                              ^
  221. Line 356, column 16: an attribute value must be a literal unless it contains only name characters
      <table width=100% cellpadding=0 cellspacing=0 border=0 bgcolor=cccccc><tr><td he
                      ^
  222. Line 358, column 230: document type does not allow element "P" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag
      ... <a href=r/ao>Advertise with Us</a><p>Copyright &copy; 2003 Yahoo! Inc. All r
                                              ^
  223. Line 360, column 14: required attribute "ALT" not specified
      <img src=http://us.i1.yimg.com/us.yimg.com/i/space.gif width=685 height=1>
                    ^

Source Listing

Below is the source input I used for this validation:

   1: <html><head>
   2: 
   3: <title>Yahoo!</title>
   4: <meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l r (cz 1 lz 1 nz 1 oz 1 vz 1) gen true for "http://www.yahoo.com" r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l r (n 0 s 0 v 0 l 0) gen true for "http://www.yahoo.com" r (n 0 s 0 v 0 l 0))'>
   5: <base href=http://www.yahoo.com/ target=_top>
   6: <style type="text/css"><!--
   7: .yhmpabd{border-left:solid #4d99e5 1px;border-right:solid #4d99e5 1px;border-bottom:solid #4d99e5 1px;}
   8: .yhmnwbd{border-left:solid #9b72cf 1px;border-right:solid #9b72cf 1px;}
   9: .yhmnwbm{border-left:solid #9b72cf 1px;border-right:solid #9b72cf 1px;border-bottom:solid #9b72cf 1px;}
  10: //--></style>
  11: <script language=javascript><!--
  12: lck='',sss=1058754160;//--></script>
  13: <script language=javascript>
  14: var b,d,l='',n='0',r,s,y;
  15: y=' '+document.cookie+';';
  16: if ((b=y.indexOf(' Y=v'))>=0) {
  17: y=y.substring(b,y.indexOf(';',b))+'&';
  18: if ((b=y.indexOf('l='))>=0) {
  19: l=y.substring(b+2,y.indexOf('&',b));
  20: if((b=y.indexOf('n='))>=0)n=y.substring(b+2,y.indexOf('&',b));
  21: }
  22: }
  23: d=new Date();
  24: s=Math.round(d.getTime()/1000);
  25: r=Math.round(parseInt(n,32)%1021);
  26: if (lck!=l) {
  27: document.write('<meta http-equiv="Expires" content="-1">');
  28: if (location.search.indexOf('r'+r+'=')!=1) {
  29: location.replace('http://'+location.hostname+location.pathname+'?r'+r+'='+s);
  30: }
  31: }
  32: </script>
  33: </head>
  34: <body name=bod topmargin=7 marginheight=7>
  35: <center>
  36: <map name=m><area alt="My Yahoo!" coords="44,0,106,47" href=r/i1><area alt=Finance coords="121,0,170,47" href=r/f1><area alt=Shop coords="192,0,241,47" href=r/xm><area alt=Email coords="493,0,542,47" href=r/m1><area alt=Messenger coords="558,0,618,47" href=r/p1><area alt=HotJobs coords="634,0,683,47" href=r/hj><area alt=Help coords="699,0,739,14" href=r/hw></map><img width=740 height=48 border=0 usemap="#m" src=http://us.i1.yimg.com/us.yimg.com/i/ww/m6v8b.gif alt="Yahoo!"><table border=0 cellspacing=0 cellpadding=11><tr><td align=center nowrap><font face=arial size=-1><table border=0 cellspacing=0 cellpadding=0><tr><td><a href=s/97661><img src="http://us.i1.yimg.com/us.yimg.com/i/mntl/ga/03q3/tycoon.gif" width=16 height=16 border=0></a></td><td nowrap><font face=arial size=-1>&nbsp; <a href=s/97662><b>Yahoo! Games</b></a> - Download and Play
  37: <a href=s/97661>Lemonade Tycoon</a>,
  38: <a href=s/97663>Jigsaw</a>,
  39: <a href=s/97664>10 Pin Bowling</a>,
  40: <a href=s/97665>Bookworm</a>,
  41: <a href=s/97666>Solitaire</a>,
  42: <a href=s/97667><b>More</b></a> &nbsp;</font></td><td></td></tr></table></font></td></tr></table>
  43: <table width=570 cellpadding=0 cellspacing=0 border=0><tr><td width=1><spacer type=block width=1 height=1></td><td width=568 bgcolor=666666 height=1><spacer type=block width=1 height=1></td><td width=1><spacer type=block width=1 height=1></td></tr><tr><td width=1 bgcolor=666666><spacer type=block width=1 height=1></td><td><table width=100% cellpadding=5 cellspacing=0 border=0 bgcolor=e6e6e6><tr><td align=center>
  44: <form name=sf1 style="margin-bottom:0" action="r/sx/*-http://search.yahoo.com/bin/search"><table cellpadding=0 cellspacing=0 border=0><tr><td nowrap><font face=arial size=-1><a href=r/ot>Search the Web</a>:&nbsp;</font></td><td nowrap><input type=text size=30 name=p>&nbsp;<input type=submit value=Search>&nbsp;&nbsp;</td><td nowrap><font face=arial size=-2>&#149; <a href=r/so>Advanced</a><br>&#149;
  45: <a href=r/sy>Preferences</a></font></td></tr></table></form><span style="margin-top:-1em"></span>
  46: </td></tr></table></td><td width=1 bgcolor=666666><spacer type=block width=1 height=1></td></tr><tr><td width=1><spacer type=block width=1 height=1></td><td bgcolor=666666 height=1><spacer type=block width=1 height=1></td><td width=1><spacer type=block width=1 height=1></td></tr></table><table border=0><tr><td height=5><spacer type=block width=1 height=1></td></tr></table>
  47: <table cellpadding=0 cellspacing=0 border=0>
  48: <tr valign=top><td>
  49: <table width=100% cellspacing=0 border=0>
  50: <tr valign=top><td nowrap><font color=ff6600 face=arial size=-1><b>New!</b></font></td><td colspan=2><table cellspacing=0 cellpadding=0 border=0><tr><td><a href=s/87261><img src=http://us.i1.yimg.com/us.yimg.com/i/mntl/cmp/mglass.gif height=16 width=16 border=0></a></td><td nowrap><font face=arial size=-1>&nbsp;<a href=s/87262><b>Search Shortcuts</b></a> - <a href=s/87263>Maps</a>, <a href=s/87264>Weather</a>, <a href=s/87265>Dictionary</a>, <a href=s/87262>more</a></font></td></tr></table></td></tr>
  51: <tr><td colspan=3><table cellpadding=0 cellspacing=0 border=0><tr><td height=2></td></tr></table></td></tr><tr><td colspan=3><table width=100% cellpadding=0 cellspacing=0 border=0 bgcolor=eeeeee><tr><td height=1><table cellpadding=0 cellspacing=0 border=0><tr><td height=1></td></tr></table></td></tr></table></td></tr><tr><td colspan=3></td></tr>
  52: <tr valign=top><td nowrap><font face=arial size=-1><b>Shop</b></font></td><td colspan=2><font face=arial size=-1>
  53: <a href=r/a2>Auctions</a>,
  54: <a href=r/cr>Autos</a>,
  55: <a href=r/cf>Classifieds</a>,
  56: <a href=r/r1>Real Estate</a>,
  57: <a href=r/sh>Shopping</a>,
  58: <a href=r/ta>Travel</a>
  59: </font></td></tr>
  60: <tr valign=top><td nowrap><font face=arial size=-1><b>Find</b></font></td><td nowrap colspan=2><font face=arial size=-1>
  61: <a href=r/jb>HotJobs</a>,
  62: <a href=r/mp>Maps</a>,
  63: <a href=r/ps>People Search</a>,
  64: <a href=r/pr><b>Personals</b></a>,
  65: <a href=r/yp>Yellow Pages</a>
  66: </font></td></tr>
  67: <tr valign=top><td nowrap><font face=arial size=-1><b>Connect</b></font></td><td colspan=2><font face=arial size=-1>
  68: <a href=r/yc>Chat</a>,
  69: <a href=r/gc>GeoCities</a>,
  70: <a href=r/gr>Greetings</a>,
  71: <a href=r/gp>Groups</a>,
  72: <a href=r/m2>Mail</a>,
  73: <a href=r/p2>Messenger</a>,
  74: <a href=r/oa>Mobile</a>
  75: </font></td></tr>
  76: <tr><td colspan=3><table cellpadding=0 cellspacing=0 border=0><tr><td height=2></td></tr></table></td></tr>
  77: <tr><td colspan=3><table width=100% cellpadding=0 cellspacing=0 border=0 bgcolor=eeeeee><tr><td height=1><table cellpadding=0 cellspacing=0 border=0><tr><td height=1></td></tr></table></td></tr></table></td></tr>
  78: <tr><td colspan=3></td></tr>
  79: <tr valign=top><td nowrap><font face=arial size=-1><b>Organize</b>&nbsp;</font></td><td nowrap colspan=2><font face=arial size=-1>
  80: <a href=r/ab>Addresses</a>,
  81: <a href=r/bc>Briefcase</a>,
  82: <a href=r/ca>Calendar</a>,
  83: <a href=r/i2>My Yahoo!</a>,
  84: <a href=r/pp>PayDirect</a>,
  85: <a href=r/fo>Photos</a>
  86: </font></td></tr>
  87: <tr valign=top><td nowrap><font face=arial size=-1><b>Fun</b></font></td><td colspan=2><font face=arial size=-1>
  88: <a href=r/pl><b>Games</b></a>,
  89: <a href=r/h1>Horoscopes</a>,
  90: <a href=r/yg>Kids</a>,
  91: <a href=r/mf>Movies</a>,
  92: <a href=r/uf>Music</a>,
  93: <a href=r/rd><b>Radio</b></a>,
  94: <a href=r/tg>TV</a>
  95: </font></td></tr>
  96: <tr valign=top><td nowrap><font face=arial size=-1><b>Info</b></font></td><td nowrap><font face=arial size=-1>
  97: <a href=r/sq>Finance</a>,
  98: <a href=r/wm>Health</a>,
  99: <a href=r/dn>News</a>,
 100: <a href=r/ys>Sports</a>,
 101: <a href=r/wt>Weather</a>
 102: </font></td><td align=right nowrap><font face=arial size=-1><b><a href=r/xy>More Yahoo!...</a></b></font></td></tr>
 103: </table>
 104: <small><small><br></small></small>
 105: <center><div id=mntl>
 106: <table border=0 width="100%" cellspacing=1 cellpadding=0 bgcolor=85a377><tr><td width=107 bgcolor=8A9C30 rowspan=2 valign=top><a href=s/91461><img src="http://us.i1.yimg.com/us.yimg.com/i/mntl/re/03q1/house.jpg" alt="Yahoo! Real Estate - Home for Sale" width=107 height=123 border=0></a></td><td align=center bgcolor=fdea93><a href=s/91462><img src="http://us.i1.yimg.com/us.yimg.com/i/mntl/re/yre2.gif" alt="Yahoo! Real Estate" width=154 height=16 border=0 vspace=3></a></td></tr><tr><td bgcolor=d3efcc align=center valign=top><img src="http://us.i1.yimg.com/us.yimg.com/i/mntl/re/over1mmhome.gif" alt="Over One Million Home Listings" width=230 height=22 border=0 vspace=5><br><table border=0 cellspacing=0 cellpadding=6 bgcolor=f2fdef><tr><td>&nbsp;&nbsp;</td><td nowrap><font size=-1 face=arial>&#149; <a href=s/91463><b>Buy</b></a><br>&#149; <a href=s/91464><b>Sell</b></a><br>&#149; <a href=s/91465><b>Rent</b></a>&nbsp;</font></td><td><small><small>&nbsp;</small></small></td><td nowrap><font size=-1 face=arial>&#149; <a href=s/95407>Refinance a Mortgage</a><br>&#149; <a href=s/91467>Get a Free Credit Report</a><br>&#149; <a href=s/91468>Find a Mover</a></font></td><td>&nbsp;&nbsp;</td></tr></table><small><small><br></small></small></td></tr></table>
 107: 
 108: 
 109: 
 110: </div></center>
 111: <small><small><br></small></small>
 112: <table width=100% cellpadding=4 cellspacing=0 border=0 bgcolor=dfdfdf><tr><td align=center><font face=verdana size=-2>&nbsp;<b>Y! Business Services</b> - Visit the Yahoo! <a href=r/c9>Small Business Center</a></font></td></tr></table>
 113: <table width=100% cellpadding=0 cellspacing=0 border=0 bgcolor=999999><tr><td height=1><table cellpadding=0 cellspacing=0 border=0><tr><td height=1></td></tr></table></td></tr></table>
 114: <center><table width=95% border=0 cellspacing=0 cellpadding=2><tr>
 115: <td width=30% valign=top nowrap><font face=arial size=-1>
 116: <b>&#149;</b>&nbsp;<a href=r/h9>Web Hosting</a><br>
 117: <b>&#149;</b>&nbsp;<a href=r/e9>E-commerce</a>
 118: </font></td>
 119: <td width=38% valign=top nowrap><font face=arial size=-1>
 120: <b>&#149;</b>&nbsp;<a href=r/d9>Domain Registration</a><br>
 121: <b>&#149;</b>&nbsp;<a href=r/m9>Business Mail</a>
 122: </font></td>
 123: <td width=32% valign=top nowrap><font face=arial size=-1>
 124: <b>&#149;</b>&nbsp;<a href=r/p9>Marketing Services</a><br>
 125: <b>&#149;</b>&nbsp;<a href=r/s9>Sell on Yahoo!</a>
 126: </font></td>
 127: </tr></table></center>
 128: <small><small><br></small></small>
 129: <table width=100% cellpadding=4 cellspacing=0 border=0 bgcolor=ffe8ba>
 130: <tr><td align=left><font face=verdana size=-2>&nbsp;<b>Web Site Directory</b> - Sites organized by subject</font></td><td align=right><font face=verdana size=-2><a href=r/bx>Suggest your site</a>&nbsp;</font></td></tr>
 131: </table>
 132: <table width=100% cellpadding=0 cellspacing=0 border=0 bgcolor=bfbebe><tr><td height=1><table cellpadding=0 cellspacing=0 border=0><tr><td height=1></td></tr></table></td></tr></table>
 133: <small><small><br></small></small>
 134: <center>
 135: <table width=95% border=0 cellspacing=0 cellpadding=2>
 136: <tr>
 137: <td width=48% valign=top nowrap><font face=arial>
 138: <font size=-1><b><a href=r/bu>Business &amp; Economy</a></b></font><br>
 139: <font size=-2><a href=r/bb>B2B</a>, <a href=r/fi>Finance</a>, <a href=r/bs>Shopping</a>, <a href=r/jo>Jobs</a>...</font><br><br>
 140: <font size=-1><b><a href=r/ci>Computers &amp; Internet</a></b></font><br>
 141: <font size=-2><a href=r/in>Internet</a>, <a href=r/ww>WWW</a>, <a href=r/sf>Software</a>, <a href=r/ga>Games</a>...</font><br><br>
 142: <font size=-1><b><a href=r/nm>News &amp; Media</a></b></font><br>
 143: <font size=-2><a href=r/nw>Newspapers</a>, <a href=r/tv>TV</a>, <a href=r/mg>Radio</a>...</font><br><br>
 144: <font size=-1><b><a href=r/en>Entertainment</a></b></font><br>
 145: <font size=-2><a href=r/mo>Movies</a>, <a href=r/hu>Humor</a>, <a href=r/mu>Music</a>...</font><br><br>
 146: <font size=-1><b><a href=r/rs>Recreation &amp; Sports</a></b></font><br>
 147: <font size=-2><a href=r/sp>Sports</a>, <a href=r/tr>Travel</a>, <a href=r/au>Autos</a>, <a href=r/od>Outdoors</a>...</font><br><br>
 148: <font size=-1><b><a href=r/he>Health</a></b></font><br>
 149: <font size=-2><a href=r/ds>Diseases</a>, <a href=r/dg>Drugs</a>, <a href=r/ft>Fitness</a>...</font><br><br>
 150: <font size=-1><b><a href=r/go>Government</a></b></font><br>
 151: <font size=-2><a href=r/el>Elections</a>, <a href=r/mi>Military</a>, <a href=r/la>Law</a>, <a href=r/tx>Taxes</a>...</font></font></td>
 152: <td valign=top width=52% nowrap><font face=arial>
 153: <font size=-1><b><a href=r/re>Regional</a></b></font><br>
 154: <font size=-2><a href=r/ct>Countries</a>, <a href=r/rg>Regions</a>, <a href=r/us>US States</a>...</font><br><br>
 155: <font size=-1><b><a href=r/cu>Society &amp; Culture</a></b></font><br>
 156: <font size=-2><a href=r/pe>People</a>, <a href=r/ev>Environment</a>, <a href=r/rl>Religion</a>...</font><br><br>
 157: <font size=-1><b><a href=r/ed>Education</a></b></font><br>
 158: <font size=-2><a href=r/un>College and University</a>, <a href=r/k2>K-12</a>...</font><br><br>
 159: <font size=-1><b><a href=r/ar>Arts &amp; Humanities</a></b></font><br>
 160: <font size=-2><a href=r/ph>Photography</a>, <a href=r/hi>History</a>, <a href=r/li>Literature</a>...</font><br><br>
 161: <font size=-1><b><a href=r/sc>Science</a></b></font><br>
 162: <font size=-2><a href=r/am>Animals</a>, <a href=r/as>Astronomy</a>, <a href=r/eg>Engineering</a>...</font><br><br>
 163: <font size=-1><b><a href=r/ss>Social Science</a></b></font><br>
 164: <font size=-2><a href=r/lg>Languages</a>, <a href=r/ac>Archaeology</a>, <a href=r/py>Psychology</a>...</font><br><br>
 165: <font size=-1><b><a href=r/rf>Reference</a></b></font><br>
 166: <font size=-2><a href=r/na>Phone Numbers</a>, <a href=r/dc>Dictionaries</a>, <a href=r/qt>Quotations</a>...</font></font></td>
 167: </tr>
 168: </table>
 169: <small><small><br></small></small>
 170: <font face=verdana size=-2><b><a href=r/bz>Buzz Index</a> - <a href=r/pk>Yahoo! Picks</a> - <a href=r/wn>New Additions</a> - <a href=r/fc>Full Coverage</a></b></font>
 171: <small><small><br></small></small>
 172: <small><small><br></small></small>
 173: <a href="http://rd.yahoo.com/M=179842.1351578.2962872.1288581/D=yahoo_top/P=xxx/S=2716149:PB/A=1070745/R=0/*http://www.hp.com"><img src="http://us.a1.yimg.com/us.yimg.com/a/co/compaq/powrdbyhp_blu_84x28_yahoo.gif" border=0 width=84 height=28></a>
 174: </center>
 175: </td><td width=10><img src=http://us.i1.yimg.com/us.yimg.com/i/space.gif width=10 height=1><br></td><td width=300>
 176: <table border=0 cellspacing=0 cellpadding=0 width=100%><tr><td bgcolor=4d99e5 height=15 rowspan=2 nowrap><table border=0 cellspacing=0 cellpadding=0 width=135><tr><td width=135></td></tr></table><font face=verdana size=-2 color=white>&nbsp;&nbsp;<b>Personal Assistant</b></font></td><td bgcolor=4d99e5 valign=top><img id=cti1 src=http://us.i1.yimg.com/us.yimg.com/i/us/nt/tr14x15_1.gif width=14 height=15 alt=" "></td><td align=right width=90%><font face=verdana size=-2><b><a href=r/l6>Sign In</a></b></font></td></tr><tr><td bgcolor=4d99e5 colspan=2><table border=0 cellspacing=0 cellpadding=0><tr><td height=3></td></tr></table></td></tr></table><table border=0 cellpadding=0 cellspacing=0 width=100% bgcolor=e5f6ff class=yhmpabd><tr><td width=80><img src=http://us.i1.yimg.com/us.yimg.com/i/ww/mail.gif height=38 width=69></td><td><table border=0 cellpadding=2 cellspacing=0><tr><td nowrap><font face=verdana size=-2>Get free email with SpamGuard!</font></td></tr><tr><td><font face=verdana size=-2>Yahoo! Mail - <b><a href=r/m7>Sign up now</a></b></font></td></tr></table></td></tr></table>
 177: <small><small><br></small></small>
 178: <table cellspacing=0 cellpadding=0 border=0 width=100%><tr><td><table width=300 cellpadding=1 cellspacing=0 border=0 bgcolor=333333><tr><td><table width="100%" cellpadding=1 cellspacing=0 border=0 bgcolor=ffffff><tr><td><table width="100%" cellpadding=0 cellspacing=0 border=0 bgcolor=c9c9c9><tr><td colspan=2 height=3><spacer type=block height=3></td><td width=62 rowspan=3 align=right bgcolor=ffffff><a href=s/97961><img src="http://us.i1.yimg.com/us.yimg.com/i/mntl/spo/03q3/ftbl_e.gif" width=61 height=56 border=0 alt="Yahoo! Sports Fantasy Football"></a></td></tr><tr valign=top><td width=1 rowspan=2 nowrap><spacer type=block width=1></td><td><a href=s/97961><img src="http://us.i1.yimg.com/us.yimg.com/i/mntl/spo/b/yspo_ftbl_e.gif" width=231 height=20 border=0 alt="Yahoo! Sports Fantasy Football" vspace=0 hspace=0></a></td></tr><tr valign=top><td><font face=arial size=-1><a href=s/97961>Sign up now</a> and you could win the <b>fantasy sports trip of your choice</b>.</font></td></tr></table></td></tr></table></td></tr></table></td></tr></table>
 179: <table width=100% cellpadding=0 cellspacing=0 border=0>
 180: <tr><td colspan=2 height=5><small><small><br></small></small></td><td valign=bottom rowspan=2 align=right width=90%><font face=verdana size=-2 style="font-size:10px" color=white>
 181: <!--[if IE]><script language=javascript>ie5=1;</script><![endif]--><![if !IE]><script language=javascript>ie5=0;</script><![endif]>
 182: <script language=javascript>
 183: var mon,day,now,hour,min,ampm,time,str,tz,end,beg;
 184: mon=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
 185: day=new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
 186: now=new Date(sss*1000);
 187: hour=now.getHours();
 188: min=now.getMinutes();
 189: ampm=(hour>=12)?"pm":"am";
 190: hour=(hour==0)?12:(hour>12)?hour-12:hour;
 191: min=(min<10)?"0"+min:min;
 192: tz="";
 193: if (ie5) {
 194: str=now.toString();
 195: end=str.lastIndexOf(" ");
 196: beg=str.lastIndexOf(" ",end-1)+1;
 197: if (ie5&&end-beg==3) {
 198: tz=" "+str.charAt(beg)+"T";
 199: }
 200: }
 201: time=hour+":"+min+ampm+tz+", <nobr>"+day[now.getDay()]+" "+mon[now.getMonth()]+" "+now.getDate()+"</nobr>";
 202: document.write("<font color=black>"+time+"</font>");
 203: </script>
 204: </font></td></tr>
 205: <tr><td bgcolor=9b72cf height=15 rowspan=2 nowrap><table width=135 cellpadding=0 cellspacing=0 border=0><tr><td width=135></td></tr></table><font face=verdana size=-2 color=white>&nbsp;&nbsp;<b>In The News</b></font></td><td bgcolor=9b72cf valign=top><img id=cti2 src=http://us.i1.yimg.com/us.yimg.com/i/us/nt/tr14x15_1.gif width=14 height=15 alt=""></td></tr>
 206: <tr><td bgcolor=9b72cf colspan=2><table cellpadding=0 cellspacing=0 border=0><tr><td height=3></td></tr></table></td></tr>
 207: </table>
 208: <table width=100% cellpadding=8 cellspacing=0 border=0 bgcolor=f1f1fd class=yhmnwbd>
 209: <tr><td align=center>
 210: <table width=100% cellspacing=0 cellpadding=1 border=0>
 211: <tr><td valign=top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=arial size=-1><a href="/homer/?http://story.news.yahoo.com/news?tmpl=story&u=/ap/20030721/ap_on_re_mi_ea/iraq&cid=540&ncid=716">Gen. to establish armed militia in Iraq</a></font></td></tr><tr><td valign=top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=arial size=-1><a href="/homer/?http://story.news.yahoo.com/news?tmpl=story&u=/ap/20030721/ap_on_go_co/us_intelligence&cid=512&ncid=716">Senator prods Bush on prewar Iraq claims</a></font></td></tr><tr><td valign=top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=arial size=-1><a href="/homer/?http://story.news.yahoo.com/news?tmpl=story&u=/ap/20030720/ap_on_re_mi_ea/britain_weapons_adviser&cid=540&ncid=716">Blair won't resign over adviser's suicide</a></font></td></tr><tr><td valign=top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=arial size=-1><a href=s/85402>Santa Monica crash driver makes statement</a></font></td></tr><tr><td valign=top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=arial size=-1><a href=s/47641>WTC leaseholder faces court showdown</a></font></td></tr><tr><td valign=top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=arial size=-1><a href=s/9301>'Bad Boys II' takes custody of box office</a></font></td></tr><tr><td valign=top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=arial size=-1><a href=s/29962>Curtis wins British Open</a> &#183; <a href=s/98241>Tour de France</a>
 212: </font></td></tr>
 213: </table>
 214: <hr noshade size=1 color=d0d3f2><font face=verdana size=-2><b><a href=r/xn>News</a> - <a href=r/np>Photos</a> - <a href=r/s2>Sports</a> - <a href=r/f2>Stocks</a> - <a href=r/w2>Weather</a></b>
 215: </font>
 216: </td></tr>
 217: </table>
 218: <table width=100% cellpadding=0 cellspacing=0 border=0 class=yhmnwbd>
 219: <tr><td bgcolor=9b72cf height=15 rowspan=2 nowrap><table width=140 cellpadding=0 cellspacing=0 border=0><tr><td width=140></td></tr></table><font face=verdana size=-2 color=white>&nbsp;&nbsp;<b>Marketplace</b></font></td>
 220: <td bgcolor=9b72cf valign=top><img src=http://us.i1.yimg.com/us.yimg.com/i/ww/tri2.gif width=14 height=15></td>
 221: <td align=right width=90% bgcolor=f1f1fd><table><tr><td></td></tr></table></td>
 222: </tr>
 223: <tr><td bgcolor=9b72cf colspan=2><table cellpadding=0 cellspacing=0 border=0><tr><td height=3></td></tr></table></td></tr>
 224: </table>
 225: <table width=100% cellpadding=8 cellspacing=0 border=0 bgcolor=f1f1fd class=yhmnwbd>
 226: <tr><td align=center>
 227: <table width=100% cellspacing=0 cellpadding=1 border=0>
 228: <tr><td valign=top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=arial size=-1><a href=s/35822>Yahoo! Web Hosting</a> - Hosting solutions for small businesses</font></td></tr><tr><td valign=top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=arial size=-1><a href=s/91381>Yahoo! Shopping</a> - <a href=s/91382>Top ten digital cameras</a></font></td></tr><tr><td valign=top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=arial size=-1><a href=s/47541>Real-Time Stock Quotes and News</a> - $9.95 per month</font></td></tr><tr><td valign=top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=arial size=-1><a href=s/85103>SBC Yahoo! DSL</a> - Free activation and installation. Only $29.95/mo for a year.</font></td></tr>
 229: </table>
 230: <hr noshade size=1 color=d0d3f2>
 231: <font face=verdana size=-2><b><a href=r/vs>Shopping</a> - <a href=r/s5>Gifts</a> - <a href=r/s6>Computers</a> - <a href=r/s8>Flowers</a> - <a href=r/t3>Travel</a></b>
 232: </font>
 233: </td></tr>
 234: </table>
 235: <table width=100% cellpadding=0 cellspacing=0 border=0 class=yhmnwbd>
 236: <tr><td bgcolor=9b72cf height=15 rowspan=2 nowrap><table width=140 cellpadding=0 cellspacing=0 border=0><tr><td width=140></td></tr></table><font face=verdana size=-2 color=white>&nbsp;&nbsp;<b>Entertainment</b></font></td>
 237: <td bgcolor=9b72cf valign=top><img src=http://us.i1.yimg.com/us.yimg.com/i/ww/tri2.gif width=14 height=15></td><td align=right width=90% bgcolor=f1f1fd><table><tr><td></td></tr></table></td>
 238: </tr>
 239: <tr><td bgcolor=9b72cf colspan=2><table cellpadding=0 cellspacing=0 border=0><tr><td height=3></td></tr></table></td></tr>
 240: </table>
 241: <table width=100% cellpadding=8 cellspacing=0 border=0 bgcolor=f1f1fd class=yhmnwbm>
 242: <tr><td align=center>
 243: <table width=100% cellspacing=0 cellpadding=1 border=0>
 244: <tr><td valign=top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=arial size=-1><table border=0 cellpadding=0 cellspacing=0 width="100%"><tr><td><font face=arial size=-1><a href=s/62001>Yahoo! Sports - Weekend wrap-up</a></font></td></tr></table>
 245: <table cellSpacing=0 cellPadding=4 width="100%" border=0><tr><td><a href=s/98301><img height=50 alt=" " src="http://us.i1.yimg.com/us.yimg.com/i/features/scoreboard/med/2003/07/ipt_1058747803.jpg" width=50 border=0></a></td><td><font face=verdana size=-2><a href=s/89385>Major upset at British Open</A>; Also: <a href=s/92462>MLB</a>, <a href=s/96722>Tour de France</a>, <a href=s/89384>NASCAR</a>, <a href=s/70583>More</a>.</font></td></tr></table></font></td></tr><tr><td valign=top><font face=arial size=-1><b>&#149;</b>&nbsp;</font></td><td><font face=arial size=-1><a href=s/97704><b>LAUNCH Ring Tones</b></a><br>
 246: <table border=0 cellpadding=4 cellspacing=0 width=100%>
 247: <tr><td><a href=s/97704><img  src=http://us.i1.yimg.com/us.yimg.com/i/us/pi/50/2003/07/ringtone_1.jpg width=50 height=50 border=0  alt="Ring Tones"></a></td><td><font face=verdana size=-2><a href=s/97705>Eminem</a>, <a href=s/97706>Mariah Carey</a>, <a href=s/97707>Jennifer Lopez</a>, <a href=s/97708>Brooks &amp; Dunn</a>, <a href=s/97709>Ludacris</a>, <a href=s/97710>Christina Aguilera</a>, <a href=s/97711>DMX</a>, <a href=s/97704>more...</a></font></td></tr></table>
 248: 
 249: </font></td></tr>
 250: </table>
 251: <hr noshade size=1 color=d0d3f2>
 252: <font face=verdana size=-2><b><a href=r/g2>Games</a> - <a href=r/mv>Movies</a> - <a href=r/rk>Music</a> - <a href=r/lc>Radio</a> - <a href=r/t2>TV</a></b>
 253: </font>
 254: </td></tr>
 255: </table>
 256: <img src=http://us.i1.yimg.com/us.yimg.com/i/space.gif width=235 height=1><br>
 257: </td></tr></table>
 258: <br>
 259: <table cellpadding=0 cellspacing=0 border=0>
 260: <tr><td align=center>
 261: <hr noshade size=1 width=100% color=cccccc>
 262: <table width=100% cellpadding=4 cellspacing=0 border=0>
 263: <tr><td align=center><font face=arial><b>Local Yahoo!s</b></font></td></tr>
 264: </table>
 265: <table width=100% cellpadding=2 cellspacing=4 border=0>
 266: <tr><td colspan=2 bgcolor=efefff align=center><font face=verdana size=-2><b>Europe</b></font></td>
 267: <td colspan=2 bgcolor=efefff align=center><font face=verdana size=-2><b>Asia Pacific</b></font></td>
 268: <td colspan=2 bgcolor=efefff align=center><font face=verdana size=-2><b>Americas</b></font></td>
 269: </tr>
 270: <tr valign=top>
 271: <td width=16% nowrap><font face=arial size=-1>
 272: &#149; <a href=r/nc>Catalan</a><br>
 273: &#149; <a href=r/dk>Denmark</a><br>
 274: &#149; <a href=r/fr>France</a><br>
 275: &#149; <a href=r/de>Germany</a><br>
 276: &#149; <a href=r/it>Italy</a>
 277: </font></td><td width=16% nowrap><font face=arial size=-1>
 278: &#149; <a href=r/no>Norway</a><br>
 279: &#149; <a href=r/es>Spain</a><br>
 280: &#149; <a href=r/se>Sweden</a><br>
 281: &#149; <a href=r/uk>UK &amp; Ireland</a>
 282: </font></td><td width=18% nowrap><font face=arial size=-1>
 283: &#149; <a href=r/ai>Asia</a><br>
 284: &#149; <a href=r/an>Australia &amp; NZ</a><br>
 285: &#149; <a href=r/cc>China</a><br>
 286: &#149; <a href=r/hk>Hong Kong</a><br>
 287: &#149; <a href=r/id>India</a>
 288: </font></td><td width=18% nowrap><font face=arial size=-1>
 289: &#149; <a href=r/jp>Japan</a><br>
 290: &#149; <a href=r/kr>Korea</a><br>
 291: &#149; <a href=r/sg>Singapore</a><br>
 292: &#149; <a href=r/tw>Taiwan</a>
 293: </font></td><td width=16% nowrap><font face=arial size=-1>
 294: &#149; <a href=r/ag>Argentina</a><br>
 295: &#149; <a href=r/br>Brazil</a><br>
 296: &#149; <a href=r/cd>Canada</a>
 297: </font></td><td width=16% nowrap><font face=arial size=-1>
 298: &#149; <a href=r/mx>Mexico</a><br>
 299: &#149; <a href=r/cn>U.S. in Chinese</a><br>
 300: &#149; <a href=r/ep>U.S. in Spanish</a>
 301: </font></td></tr></table>
 302: <small><small><br></small></small>
 303: <font face=arial size=-1><b>U.S. Cities:</b>&nbsp;&nbsp;<a href=r/at>Atlanta</a> - <a href=r/bo>Boston</a> - <a href=r/ch>Chicago</a> - <a href=r/hn>Houston</a> - <a href=r/lo>LA</a> - <a href=r/ny>NYC</a> - <a href=r/ba>SF Bay</a> - <a href=r/sa>Seattle</a> - <a href=r/mm>more...</a></font>
 304: <hr noshade size=1 width=100% color=cccccc>
 305: <table width=100% cellpadding=4 cellspacing=0 border=0>
 306: <tr><td align=center><font face=arial><b>More Yahoo!</b></font></td></tr>
 307: </table>
 308: <table width=100% cellpadding=2 cellspacing=4 border=0>
 309: <tr><td bgcolor=eaf6ec align=center><font face=verdana size=-2><b>Guides</b></font></td>
 310: <td bgcolor=eaf6ec align=center><font face=verdana size=-2><b>Small Business</b></font></td>
 311: <td bgcolor=eaf6ec align=center><font face=verdana size=-2><b>Enterprise</b></font></td>
 312: <td bgcolor=eaf6ec align=center><font face=verdana size=-2><b>Personal Finance</b></font></td>
 313: </tr>
 314: <tr valign=top>
 315: <td width=25% nowrap><font face=arial size=-1>
 316: &#149; <a href=r/eu>Education</a><br>
 317: &#149; <a href=r/yh>Health</a><br>
 318: &#149; <a href=r/lt>Lottery</a><br>
 319: &#149; <a href=r/pf>Members</a><br>
 320: &#149; <a href=r/pt>Pets</a><br>
 321: &#149; <a href=r/k1>Yahooligans!</a>
 322: </font></td><td width=25% nowrap><font face=arial size=-1>
 323: &#149; <a href=r/dr>Domain Registration</a><br>
 324: &#149; <a href=r/sl>Sell on Yahoo!</a><br>
 325: &#149; <a href=r/sb>Small Biz Center</a><br>
 326: &#149; <a href=r/s3>Store Building</a><br>
 327: &#149; <a href=r/ws>Web Hosting</a>
 328: </font></td><td width=25% nowrap><font face=arial size=-1>
 329: &#149; <a href=r/et>Enterprise Solutions</a><br>
 330: &#149; <a href=r/ee>Enterprise Messenger</a><br>
 331: &#149; <a href=r/ef>Enterprise My Yahoo!</a><br>
 332: &#149; <a href=r/ew>Professional Services</a><br>
 333: &#149; <a href=r/rx>Resumix</a>
 334: </font></td><td width=25% nowrap><font face=arial size=-1>
 335: &#149; <a href=r/bk>Banking</a><br>
 336: &#149; <a href=r/b2>Bill Pay</a><br>
 337: &#149; <a href=r/fm>Money Manager</a><br>
 338: &#149; <a href=r/is>Insurance</a><br>
 339: &#149; <a href=r/ln>Loans</a><br>
 340: &#149; <a href=r/tc>Taxes</a>
 341: </font></td></tr></table>
 342: <small><small><br></small></small>
 343: <font face=arial size=-1><b><a href=r/yz>Even More Yahoo!...</a></b></font>
 344: <br><small><small><br></small></small>
 345: <hr noshade size=1 width=100% color=cccccc>
 346: <font face=arial size=-1><b>Access Yahoo! via:</b>&nbsp;&nbsp;<a href=r/pd>PDAs</a> - <a href=r/we>Web-enabled Phones</a> - <a href=r/vc>Voice (1-800-My-Yahoo)</a> - <a href=r/sd>DSL</a> - <a href=r/su>Dial-up</a></font>
 347: <br><small><br></small>
 348: <table width=100% cellpadding=0 cellspacing=0 border=0 bgcolor=cccccc><tr><td height=1></td></tr></table>
 349: <table width=100% cellpadding=10 cellspacing=0 border=0 bgcolor=eeeeee>
 350: <tr><td align=center>
 351: <form style="margin-bottom:0" action=bin/ms>
 352: <table cellpadding=0 cellspacing=0 border=0><tr><td>
 353: <input size=40 name=p title="enter search terms here">&nbsp;<input type=submit value=Search>&nbsp;&nbsp;<select name=u><option value="http://search.yahoo.com/bin/search?p=">The Web<option value="http://search.yahoo.com/search/dir?p=">Directory<option value="http://images.search.yahoo.com/search/images?p=">Images<option value="http://search.news.yahoo.com/search/news?p=">News Stories<option value="http://search.news.yahoo.com/search/news?c=news_photos&p=">News Photos<option value="http://education.yahoo.com/search/ahd?txt_main=">Dictionary<option value="http://search.shopping.yahoo.com/search?P=all&p=">Shopping<option value="http://yp.yahoo.com/py/ypResults.py?Pyt=TFour11&zip=&stp=a&stx=">Yellow Pages</select>&nbsp;&nbsp;</td><td><font face=arial size=-2>&#149;&nbsp;<a href=r/o1>Advanced</a><br>&#149;&nbsp;<a href=r/sz>Preferences</a></font></td></tr></table></form>
 354: </td></tr>
 355: </table>
 356: <table width=100% cellpadding=0 cellspacing=0 border=0 bgcolor=cccccc><tr><td height=1></td></tr></table>
 357: <small><small><br></small></small>
 358: <font face=arial size=-1><a href=r/ad>How to Suggest a Site</a> - <a href=r/cp>Company Info</a> - <a href=r/cy>Copyright Policy</a> - <a href=r/ts>Terms of Service</a> - <a href=r/hr>Jobs</a> - <a href=r/ao>Advertise with Us</a><p>Copyright &copy; 2003 Yahoo! Inc. All rights reserved.<br><a href=r/pv>Privacy Policy</a>
 359: </font><br>
 360: <img src=http://us.i1.yimg.com/us.yimg.com/i/space.gif width=685 height=1>
 361: </td></tr>
 362: </table>
 363: </center>
 364: </body></html>
    
Valid XHTML 1.0! The W3C Validator Team
Date: 2003/07/17 18:58:12