Errors found while checking this document as XHTML 1.0 Transitional!

Result: 190 Errors, 300 warning(s)
:
: utf-8
: XHTML 1.0 Transitional
Root Element: html
Root Namespace: http://www.w3.org/1999/xhtml
Options

Help on the options is available.

Notes and Potential Issues

The following notes and warnings highlight missing or conflicting information which caused the validator to perform some guesswork prior to validation, or other things affecting the output below. If the guess or fallback is incorrect, it could make validation results entirely incoherent. It is highly recommended to check these potential issues, and, if necessary, fix them and re-validate the document.

  1. Info No Character encoding declared at document level

    No character encoding information was found within the document, either in an HTML meta element or an XML declaration. It is often recommended to declare the character encoding in the document itself, especially if there is a chance that the document will be read from or saved to disk, CD, etc.

    See this tutorial on character encoding for techniques and explanations.

↑ Top

Validation Output: 190 Errors

  1. Error Line 5, Column 3: DTDs other than base allowed only if CONCUR YES or EXPLICIT YES
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/…

  2. Error Line 5, Column 11: document type "html" already defined
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/…

  3. Error Line 9, Column 34: end tag for "meta" omitted, but OMITTAG NO was specified
    <meta name="keywords" content=""> 

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  4. Info Line 9, Column 1: start tag was here
    <meta name="keywords" content=""> 
  5. Error Line 10, Column 37: end tag for "meta" omitted, but OMITTAG NO was specified
    <meta name="description" content="">

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  6. Info Line 10, Column 1: start tag was here
    <meta name="description" content="">
  7. Error Line 37, Column 11: document type does not allow element "center" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
    <p><center><table border="0" bgcolor="#009cd7" width="100%"><tr><td>

    The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.

    One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").

  8. Error Line 52, Column 28: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    					<th width="10%" nowrap><a href="javascript:print()">Print</a> | <a href="j…

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  9. Warning Line 59, Column 37: cannot generate system identifier for general entity "sort_teams"
    		<th><a href="?page=event_teamlist&sort_teams=location">Location</a></th>

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  10. Error Line 59, Column 37: general entity "sort_teams" not defined and no default entity
    		<th><a href="?page=event_teamlist&sort_teams=location">Location</a></th>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  11. Warning Line 59, Column 47: reference not terminated by REFC delimiter
    		<th><a href="?page=event_teamlist&sort_teams=location">Location</a></th>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  12. Warning Line 59, Column 47: reference to external entity in attribute value
    		<th><a href="?page=event_teamlist&sort_teams=location">Location</a></th>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  13. Error Line 59, Column 47: reference to entity "sort_teams" for which no system identifier could be generated
    		<th><a href="?page=event_teamlist&sort_teams=location">Location</a></th>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  14. Info Line 59, Column 36: entity was defined here
    		<th><a href="?page=event_teamlist&sort_teams=location">Location</a></th>
  15. Warning Line 60, Column 48: reference not terminated by REFC delimiter
    			<th><a href="?page=event_teamlist&sort_teams=name">Team Name</a></th>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  16. Warning Line 60, Column 48: reference to external entity in attribute value
    			<th><a href="?page=event_teamlist&sort_teams=name">Team Name</a></th>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  17. Error Line 60, Column 48: reference to entity "sort_teams" for which no system identifier could be generated
    			<th><a href="?page=event_teamlist&sort_teams=name">Team Name</a></th>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  18. Info Line 59, Column 36: entity was defined here
    		<th><a href="?page=event_teamlist&sort_teams=location">Location</a></th>
  19. Warning Line 61, Column 47: reference not terminated by REFC delimiter
    		<th><a href="?page=event_teamlist&sort_teams=number">Team Number</a></th>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  20. Warning Line 61, Column 47: reference to external entity in attribute value
    		<th><a href="?page=event_teamlist&sort_teams=number">Team Number</a></th>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  21. Error Line 61, Column 47: reference to entity "sort_teams" for which no system identifier could be generated
    		<th><a href="?page=event_teamlist&sort_teams=number">Team Number</a></th>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  22. Info Line 59, Column 36: entity was defined here
    		<th><a href="?page=event_teamlist&sort_teams=location">Location</a></th>
  23. Warning Line 62, Column 48: reference not terminated by REFC delimiter
    			<th><a href="?page=event_teamlist&sort_teams=division">Division</a></th>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  24. Warning Line 62, Column 48: reference to external entity in attribute value
    			<th><a href="?page=event_teamlist&sort_teams=division">Division</a></th>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  25. Error Line 62, Column 48: reference to entity "sort_teams" for which no system identifier could be generated
    			<th><a href="?page=event_teamlist&sort_teams=division">Division</a></th>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  26. Info Line 59, Column 36: entity was defined here
    		<th><a href="?page=event_teamlist&sort_teams=location">Location</a></th>
  27. Error Line 69, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Flanders, NJ<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  28. Warning Line 70, Column 59: character "&" is the first character of a delimiter but occurred as data
    …audan/John and Margaret Post Foundation/Siemen's & Mt. Olive Robotics Team</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  29. Warning Line 71, Column 35: cannot generate system identifier for general entity "tpid"
    		<td><a href="?page=team_details&tpid=20752">11</a></td>

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  30. Error Line 71, Column 35: general entity "tpid" not defined and no default entity
    		<td><a href="?page=team_details&tpid=20752">11</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  31. Warning Line 71, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20752">11</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  32. Warning Line 71, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20752">11</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  33. Error Line 71, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20752">11</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  34. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  35. Error Line 82, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Clifton Park, NY<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  36. Warning Line 83, Column 179: character "&" is the first character of a delimiter but occurred as data
    …ockheed Martin-KAPL/Bank of America/BAE SYSTEMS & Shenendehowa High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  37. Warning Line 84, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20754">20</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  38. Warning Line 84, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20754">20</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  39. Error Line 84, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20754">20</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  40. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  41. Error Line 95, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>North Brunswick, NJ<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  42. Warning Line 96, Column 54: character "&" is the first character of a delimiter but occurred as data
    …-Myers Squibb/Infrared Remote Solutions & North Brunswick Twp. High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  43. Warning Line 97, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20756">25</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  44. Warning Line 97, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20756">25</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  45. Error Line 97, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20756">25</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  46. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  47. Error Line 108, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Manchester, NH<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  48. Warning Line 109, Column 17: character "&" is the first character of a delimiter but occurred as data
    		<td>intelitek & Trinity High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  49. Warning Line 110, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20762">40</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  50. Warning Line 110, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20762">40</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  51. Error Line 110, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20762">40</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  52. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  53. Error Line 121, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Kokomo, IN<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  54. Warning Line 122, Column 117: character "&" is the first character of a delimiter but occurred as data
    …evelopment/Ivy Tech Community College & Kokomo Center School Corporation High …

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  55. Warning Line 123, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20765">45</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  56. Warning Line 123, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20765">45</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  57. Error Line 123, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20765">45</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  58. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  59. Error Line 134, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Pontiac, MI<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  60. Warning Line 135, Column 50: character "&" is the first character of a delimiter but occurred as data
    …d>Delphi Corporation/The Chrysler Foundation & Pontiac Central High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  61. Warning Line 136, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20766">47</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  62. Warning Line 136, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20766">47</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  63. Error Line 136, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20766">47</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  64. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  65. Error Line 147, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Bound Brook, NJ<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  66. Warning Line 148, Column 15: character "&" is the first character of a delimiter but occurred as data
    		<td>Ethicon & Bound Brook High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  67. Warning Line 149, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20769">56</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  68. Warning Line 149, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20769">56</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  69. Error Line 149, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20769">56</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  70. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  71. Error Line 160, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Pontiac, MI<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  72. Warning Line 161, Column 21: character "&" is the first character of a delimiter but occurred as data
    		<td>GM Powertrain & Pontiac Northern High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  73. Warning Line 162, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20776">65</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  74. Warning Line 162, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20776">65</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  75. Error Line 162, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20776">65</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  76. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  77. Error Line 173, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Milford, MI<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  78. Warning Line 174, Column 45: character "&" is the first character of a delimiter but occurred as data
    		<td>General Motors Milford Proving Ground & Huron Valley Schools</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  79. Warning Line 175, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20778">67</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  80. Warning Line 175, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20778">67</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  81. Error Line 175, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20778">67</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  82. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  83. Error Line 186, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Hammond, IN<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  84. Warning Line 187, Column 71: character "&" is the first character of a delimiter but occurred as data
    …tional/PEPSI Americas/Caterpillar/City of Hammond & School City of Hammond</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  85. Warning Line 188, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20782">71</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  86. Warning Line 188, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20782">71</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  87. Error Line 188, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20782">71</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  88. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  89. Error Line 199, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Schaumburg, IL<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  90. Warning Line 200, Column 16: character "&" is the first character of a delimiter but occurred as data
    		<td>Motorola & Rolling Meadows High School & Wheeling High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  91. Warning Line 200, Column 46: character "&" is the first character of a delimiter but occurred as data
    		<td>Motorola & Rolling Meadows High School & Wheeling High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  92. Warning Line 201, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20803">111</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  93. Warning Line 201, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20803">111</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  94. Error Line 201, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20803">111</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  95. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  96. Error Line 212, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Cupertino, CA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  97. Warning Line 213, Column 72: character "&" is the first character of a delimiter but occurred as data
    …ntec Corporation/Google/Monster Cable/Heroic Tec & Monta Vista High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  98. Warning Line 214, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20805">115</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  99. Warning Line 214, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20805">115</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  100. Error Line 214, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20805">115</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  101. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  102. Error Line 225, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Nashua, NH<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  103. Warning Line 226, Column 19: character "&" is the first character of a delimiter but occurred as data
    		<td>BAE Systems & Nashua High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  104. Warning Line 227, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20825">151</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  105. Warning Line 227, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20825">151</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  106. Error Line 227, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20825">151</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  107. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  108. Error Line 238, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>North Miami Beach, FL<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  109. Warning Line 239, Column 12: character "&" is the first character of a delimiter but occurred as data
    		<td>NASA & North Miami Beach Senior High</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  110. Warning Line 240, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20833">168</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  111. Warning Line 240, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20833">168</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  112. Error Line 240, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20833">168</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  113. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  114. Error Line 251, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Riviera Beach, FL<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  115. Warning Line 252, Column 37: character "&" is the first character of a delimiter but occurred as data
    		<td>United Technologies/EDF/Pratt & Whitney & Inlet Grove High School & Sunco…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  116. Warning Line 252, Column 47: character "&" is the first character of a delimiter but occurred as data
    …ited Technologies/EDF/Pratt & Whitney & Inlet Grove High School & Suncoast Hig…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  117. Warning Line 252, Column 73: character "&" is the first character of a delimiter but occurred as data
    …ogies/EDF/Pratt & Whitney & Inlet Grove High School & Suncoast High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  118. Warning Line 253, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20842">179</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  119. Warning Line 253, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20842">179</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  120. Error Line 253, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20842">179</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  121. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  122. Error Line 264, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Sicklerville, NJ<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  123. Warning Line 265, Column 23: character "&" is the first character of a delimiter but occurred as data
    		<td>Campbell's Soup & Camden County Technical  High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  124. Warning Line 266, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20852">203</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  125. Warning Line 266, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20852">203</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  126. Error Line 266, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20852">203</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  127. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  128. Error Line 277, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Hawthorne, CA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  129. Warning Line 278, Column 40: character "&" is the first character of a delimiter but occurred as data
    …	<td>Boeing /Walt Disney Imagineering & Centinela Valley Union High School Dis…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  130. Warning Line 279, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20854">207</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  131. Warning Line 279, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20854">207</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  132. Error Line 279, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20854">207</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  133. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  134. Error Line 290, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Troy, MI<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  135. Warning Line 291, Column 22: character "&" is the first character of a delimiter but occurred as data
    		<td>GM CCRW/Delphi & Troy School District High Schools</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  136. Warning Line 292, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20862">226</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  137. Warning Line 292, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20862">226</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  138. Error Line 292, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20862">226</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  139. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  140. Error Line 303, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Shelton, CT<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  141. Warning Line 304, Column 55: character "&" is the first character of a delimiter but occurred as data
    		<td>UTC Sikorsky/Pitney Bowes/OEM Controls/Unilever & Shelton High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  142. Warning Line 305, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20865">230</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  143. Warning Line 305, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20865">230</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  144. Error Line 305, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20865">230</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  145. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  146. Error Line 316, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Maumee, OH<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  147. Warning Line 317, Column 32: character "&" is the first character of a delimiter but occurred as data
    		<td>Dana Holding Corporation & Toledo Technology Academy High School & Rogers…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  148. Warning Line 317, Column 72: character "&" is the first character of a delimiter but occurred as data
    …g Corporation & Toledo Technology Academy High School & Rogers High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  149. Warning Line 318, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20886">279</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  150. Warning Line 318, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20886">279</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  151. Error Line 318, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20886">279</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  152. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  153. Error Line 329, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Greenville, SC<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  154. Warning Line 330, Column 32: character "&" is the first character of a delimiter but occurred as data
    		<td>Michelin/Greenville Tech & 4-H & GTCHS & Wade Hampton High School & JL Ma…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  155. Warning Line 330, Column 38: character "&" is the first character of a delimiter but occurred as data
    		<td>Michelin/Greenville Tech & 4-H & GTCHS & Wade Hampton High School & JL Ma…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  156. Warning Line 330, Column 46: character "&" is the first character of a delimiter but occurred as data
    …ichelin/Greenville Tech & 4-H & GTCHS & Wade Hampton High School & JL Mann & S…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  157. Warning Line 330, Column 73: character "&" is the first character of a delimiter but occurred as data
    …nville Tech & 4-H & GTCHS & Wade Hampton High School & JL Mann & Southside</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  158. Warning Line 330, Column 83: character "&" is the first character of a delimiter but occurred as data
    …nville Tech & 4-H & GTCHS & Wade Hampton High School & JL Mann & Southside</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  159. Warning Line 331, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20888">281</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  160. Warning Line 331, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20888">281</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  161. Error Line 331, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20888">281</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  162. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  163. Error Line 342, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Bridgewater, NJ<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  164. Warning Line 343, Column 54: character "&" is the first character of a delimiter but occurred as data
    …Tube Manufacturing/Bell Labs/303 RAMP & Bridgewater Raritan Regional High Scho…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  165. Warning Line 344, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20899">303</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  166. Warning Line 344, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20899">303</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  167. Error Line 344, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20899">303</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  168. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  169. Error Line 355, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Waialua, HI<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  170. Warning Line 356, Column 14: character "&" is the first character of a delimiter but occurred as data
    		<td>Castle & Cooke, Inc. Dole Plantation/McInerny Foundation/NASA Ames Resear…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  171. Warning Line 356, Column 302: character "&" is the first character of a delimiter but occurred as data
    …ers/Team Vision, LLC/Hawaiian Candies & Nuts/North Shore News/Aloha Computer C…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  172. Warning Line 356, Column 352: character "&" is the first character of a delimiter but occurred as data
    … Shore News/Aloha Computer Consulting & Repair/Waialua Federal Credit Union/H&…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  173. Warning Line 356, Column 392: cannot generate system identifier for general entity "W"
    …Repair/Waialua Federal Credit Union/H&W Foods/Waialua High School Foundation/S…

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  174. Error Line 356, Column 392: general entity "W" not defined and no default entity
    …Repair/Waialua Federal Credit Union/H&W Foods/Waialua High School Foundation/S…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  175. Warning Line 356, Column 393: reference not terminated by REFC delimiter
    …epair/Waialua Federal Credit Union/H&W Foods/Waialua High School Foundation/Su…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  176. Error Line 356, Column 393: reference to entity "W" for which no system identifier could be generated
    …epair/Waialua Federal Credit Union/H&W Foods/Waialua High School Foundation/Su…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  177. Info Line 356, Column 391: entity was defined here
    … Repair/Waialua Federal Credit Union/H&W Foods/Waialua High School Foundation/…
  178. Warning Line 356, Column 469: character "&" is the first character of a delimiter but occurred as data
    …Surf n Sea/ACTUS Lend Lease/Alexander & Baldwin Foundation-Matson Navigation C…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  179. Warning Line 357, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20931">359</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  180. Warning Line 357, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20931">359</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  181. Error Line 357, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20931">359</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  182. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  183. Error Line 368, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Austin, TX<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  184. Warning Line 369, Column 80: character "&" is the first character of a delimiter but occurred as data
    …E SYSTEMS INC. / National Instruments & Liberal Arts & Science Academy High Sc…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  185. Warning Line 369, Column 95: character "&" is the first character of a delimiter but occurred as data
    …S INC. / National Instruments & Liberal Arts & Science Academy High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  186. Warning Line 370, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20955">418</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  187. Warning Line 370, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20955">418</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  188. Error Line 370, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20955">418</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  189. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  190. Error Line 381, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Raleigh, NC<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  191. Warning Line 382, Column 51: character "&" is the first character of a delimiter but occurred as data
    …rporation/NCSU College of Engineering & Southeast Raleigh Magnet High School</…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  192. Warning Line 383, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20960">435</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  193. Warning Line 383, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20960">435</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  194. Error Line 383, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20960">435</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  195. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  196. Error Line 394, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Detroit, MI<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  197. Warning Line 395, Column 44: character "&" is the first character of a delimiter but occurred as data
    …>DTE ENERGY / Jublee Housing Initiave & Community Devel, Corp / ITT Technical …

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  198. Warning Line 395, Column 115: character "&" is the first character of a delimiter but occurred as data
    …hnical Institute / Ford Motor Company & Detroit Public Schools & Cody HS High …

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  199. Warning Line 395, Column 140: character "&" is the first character of a delimiter but occurred as data
    …titute / Ford Motor Company & Detroit Public Schools & Cody HS High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  200. Warning Line 396, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20961">440</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  201. Warning Line 396, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20961">440</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  202. Error Line 396, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20961">440</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  203. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  204. Error Line 407, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>West Lafayette, IN<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  205. Warning Line 408, Column 85: character "&" is the first character of a delimiter but occurred as data
    …ana Department of Workforce Development & West Lafayette Jr-Sr High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  206. Warning Line 409, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20970">461</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  207. Warning Line 409, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20970">461</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  208. Error Line 409, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20970">461</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  209. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  210. Error Line 420, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Goodrich, MI<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  211. Warning Line 421, Column 50: character "&" is the first character of a delimiter but occurred as data
    		<td>Chrysler Foundation / General Motors / ITT & Goodrich High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  212. Warning Line 422, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=20983">494</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  213. Warning Line 422, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=20983">494</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  214. Error Line 422, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=20983">494</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  215. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  216. Error Line 433, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Montclair, NJ<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  217. Warning Line 434, Column 61: character "&" is the first character of a delimiter but occurred as data
    …osh Weston / Montclair Society of Engineers & Montclair Board of Education</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  218. Warning Line 435, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21011">555</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  219. Warning Line 435, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21011">555</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  220. Error Line 435, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21011">555</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  221. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  222. Error Line 446, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Grand Prairie, TX<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  223. Warning Line 447, Column 100: character "&" is the first character of a delimiter but occurred as data
    …al Institute-Arlington, Texas / Pratt & Whitney Eagle SVC / General Motors-Arl…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  224. Warning Line 447, Column 271: character "&" is the first character of a delimiter but occurred as data
    …State  Farm Insurance / G-S Machine Shop & South Grand Prairie High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  225. Warning Line 448, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=22146">704</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  226. Warning Line 448, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=22146">704</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  227. Error Line 448, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=22146">704</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  228. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  229. Error Line 459, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Horsham, PA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  230. Warning Line 460, Column 31: character "&" is the first character of a delimiter but occurred as data
    		<td>Motorola/Centocor, Inc. & Hatboro-Horsham High School & Upper Moreland Hi…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  231. Warning Line 460, Column 61: character "&" is the first character of a delimiter but occurred as data
    …/Centocor, Inc. & Hatboro-Horsham High School & Upper Moreland High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  232. Warning Line 461, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21071">708</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  233. Warning Line 461, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21071">708</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  234. Error Line 461, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21071">708</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  235. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  236. Error Line 472, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Falls Village, CT<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  237. Warning Line 473, Column 42: character "&" is the first character of a delimiter but occurred as data
    …td>BD/C. A. Lindell/21st Century Fund & Housatonic Valley Regional High School…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  238. Warning Line 474, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21075">716</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  239. Warning Line 474, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21075">716</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  240. Error Line 474, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21075">716</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  241. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  242. Error Line 485, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Ft. Lauderdale, FL<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  243. Warning Line 486, Column 24: character "&" is the first character of a delimiter but occurred as data
    		<td>Apex Machine Co. & Westminster Academy</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  244. Warning Line 487, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21614">744</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  245. Warning Line 487, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21614">744</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  246. Error Line 487, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21614">744</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  247. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  248. Error Line 498, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Bend, OR<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  249. Warning Line 499, Column 28: character "&" is the first character of a delimiter but occurred as data
    		<td>Boeing/Bend Research & Mountain View High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  250. Warning Line 500, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21079">753</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  251. Warning Line 500, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21079">753</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  252. Error Line 500, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21079">753</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  253. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  254. Error Line 511, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Allen Park, MI<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  255. Warning Line 512, Column 126: character "&" is the first character of a delimiter but occurred as data
    …ical Institute/Copper and Brass Sales & Allen Park High School & St Frances Ca…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  256. Warning Line 512, Column 151: character "&" is the first character of a delimiter but occurred as data
    … and Brass Sales & Allen Park High School & St Frances Cabrini High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  257. Warning Line 513, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21097">815</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  258. Warning Line 513, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21097">815</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  259. Error Line 513, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21097">815</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  260. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  261. Error Line 524, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Southold, NY<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  262. Warning Line 525, Column 295: character "&" is the first character of a delimiter but occurred as data
    …way / Founder's Tavern / Wayside Deli & Southold Junior Senior High School</td…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  263. Warning Line 526, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21124">870</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  264. Warning Line 526, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21124">870</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  265. Error Line 526, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21124">870</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  266. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  267. Error Line 537, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Tulsa, OK<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  268. Warning Line 538, Column 56: cannot generate system identifier for general entity "M"
    …Group/AEP-PSO/Allied Fence Company/HE&M Saw/APSCO Inc./Memorial Robotics Boost…

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  269. Error Line 538, Column 56: general entity "M" not defined and no default entity
    …Group/AEP-PSO/Allied Fence Company/HE&M Saw/APSCO Inc./Memorial Robotics Boost…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  270. Warning Line 538, Column 57: reference not terminated by REFC delimiter
    …roup/AEP-PSO/Allied Fence Company/HE&M Saw/APSCO Inc./Memorial Robotics Booste…

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  271. Error Line 538, Column 57: reference to entity "M" for which no system identifier could be generated
    …roup/AEP-PSO/Allied Fence Company/HE&M Saw/APSCO Inc./Memorial Robotics Booste…

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  272. Info Line 538, Column 55: entity was defined here
    … Group/AEP-PSO/Allied Fence Company/HE&M Saw/APSCO Inc./Memorial Robotics Boos…
  273. Warning Line 538, Column 104: character "&" is the first character of a delimiter but occurred as data
    …O Inc./Memorial Robotics Booster Club & Tulsa Engineering Academy at Memorial …

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  274. Warning Line 539, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21148">932</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  275. Warning Line 539, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21148">932</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  276. Error Line 539, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21148">932</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  277. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  278. Error Line 550, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Marion, IA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  279. Warning Line 551, Column 215: character "&" is the first character of a delimiter but occurred as data
    …E / ASME / Hawkeye Labor Council / Innovative Signs & Linn-Mar High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  280. Warning Line 552, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21160">967</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  281. Warning Line 552, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21160">967</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  282. Error Line 552, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21160">967</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  283. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  284. Error Line 563, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Mountain View, CA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  285. Warning Line 564, Column 155: character "&" is the first character of a delimiter but occurred as data
    …t Inc. / Berger Manufacturing, Inc / OneLegacy & Mountain View High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  286. Warning Line 565, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21162">971</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  287. Warning Line 565, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21162">971</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  288. Error Line 565, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21162">971</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  289. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  290. Error Line 576, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Atascadero, CA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  291. Warning Line 577, Column 76: character "&" is the first character of a delimiter but occurred as data
    …erprises LLC/Cal Poly San Luis Obispo & Atascadero High School Greyhound Revol…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  292. Warning Line 578, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21163">973</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  293. Warning Line 578, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21163">973</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  294. Error Line 578, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21163">973</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  295. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  296. Error Line 589, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Las Vegas, NV<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  297. Warning Line 590, Column 54: character "&" is the first character of a delimiter but occurred as data
    …ing Belt Chain/Albertsons/Cirque du Soleil & Cimarron-Memorial High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  298. Warning Line 591, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21168">987</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  299. Warning Line 591, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21168">987</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  300. Error Line 591, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21168">987</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  301. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  302. Error Line 602, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Cheshire, CT<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  303. Warning Line 603, Column 199: character "&" is the first character of a delimiter but occurred as data
    …Jr/Computer U Inc/O.J. Mann Electric Services, Inc. & Cheshire High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  304. Warning Line 604, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21174">999</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  305. Warning Line 604, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21174">999</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  306. Error Line 604, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21174">999</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  307. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  308. Error Line 615, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Londonderry, NH<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  309. Warning Line 616, Column 60: character "&" is the first character of a delimiter but occurred as data
    …Systems / Parker Pneutronics / Fleet Ready Corp. & Londonderry High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  310. Warning Line 617, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21200">1058</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  311. Warning Line 617, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21200">1058</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  312. Error Line 617, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21200">1058</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  313. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  314. Error Line 628, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Avon, CT<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  315. Warning Line 629, Column 29: character "&" is the first character of a delimiter but occurred as data
    		<td>UTC Fire and Security & Avon High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  316. Warning Line 630, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21225">1124</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  317. Warning Line 630, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21225">1124</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  318. Error Line 630, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21225">1124</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  319. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  320. Error Line 641, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Seat Pleasant, MD<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  321. Warning Line 642, Column 160: character "&" is the first character of a delimiter but occurred as data
    …gy Training Center/Patriots Technology Training Center & Bowie High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  322. Warning Line 643, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21249">1195</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  323. Warning Line 643, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21249">1195</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  324. Error Line 643, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21249">1195</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  325. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  326. Error Line 654, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>O&#39;Fallon, IL<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  327. Warning Line 656, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21253">1208</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  328. Warning Line 656, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21253">1208</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  329. Error Line 656, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21253">1208</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  330. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  331. Error Line 667, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Dearborn, MI<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  332. Warning Line 668, Column 41: character "&" is the first character of a delimiter but occurred as data
    		<td>Ford Motor Company/The Henry Ford & Henry Ford Academy</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  333. Warning Line 669, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21275">1250</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  334. Warning Line 669, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21275">1250</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  335. Error Line 669, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21275">1250</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  336. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  337. Error Line 680, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Suwanee, GA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  338. Warning Line 681, Column 21: character "&" is the first character of a delimiter but occurred as data
    		<td>Motorola Inc. & Peachtree Ridge High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  339. Warning Line 682, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21282">1261</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  340. Warning Line 682, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21282">1261</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  341. Error Line 682, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21282">1261</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  342. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  343. Error Line 693, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Cleveland, OH<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  344. Warning Line 694, Column 192: character "&" is the first character of a delimiter but occurred as data
    …ation/Cleveland TechWorks/FirstEnergy & Cleveland Metropolitan School District…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  345. Warning Line 695, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21286">1270</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  346. Warning Line 695, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21286">1270</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  347. Error Line 695, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21286">1270</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  348. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  349. Error Line 706, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Issaquah, WA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  350. Warning Line 707, Column 54: character "&" is the first character of a delimiter but occurred as data
    		<td>The Boeing Company/Issaquah Schools Foundation & Issaquah High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  351. Warning Line 708, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21314">1318</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  352. Warning Line 708, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21314">1318</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  353. Error Line 708, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21314">1318</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  354. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  355. Error Line 719, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Collbran, CO<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  356. Warning Line 720, Column 13: character "&" is the first character of a delimiter but occurred as data
    		<td>Capco & Plateau Valley High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  357. Warning Line 721, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21321">1332</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  358. Warning Line 721, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21321">1332</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  359. Error Line 721, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21321">1332</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  360. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  361. Error Line 732, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Rochester, NY<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  362. Warning Line 733, Column 18: character "&" is the first character of a delimiter but occurred as data
    		<td>Xerox Corp & Ben Franklin Educational Campus</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  363. Warning Line 734, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21378">1450</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  364. Warning Line 734, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21378">1450</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  365. Error Line 734, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21378">1450</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  366. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  367. Error Line 745, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>The Woodlands, TX<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  368. Warning Line 746, Column 94: character "&" is the first character of a delimiter but occurred as data
    …P.A.S.T. / The Woodlands College Park High School PTA / ReMAX & Conroe ISD</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  369. Warning Line 747, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21390">1477</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  370. Warning Line 747, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21390">1477</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  371. Error Line 747, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21390">1477</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  372. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  373. Error Line 758, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Portland, OR<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  374. Warning Line 760, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21424">1540</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  375. Warning Line 760, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21424">1540</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  376. Error Line 760, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21424">1540</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  377. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  378. Error Line 771, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Naples, NY<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  379. Warning Line 772, Column 14: character "&" is the first character of a delimiter but occurred as data
    		<td>Bausch & Lomb Corp/Lake Country Woodworkers/Mrs. Brenda Keith & Naples Ce…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  380. Warning Line 772, Column 69: character "&" is the first character of a delimiter but occurred as data
    …mb Corp/Lake Country Woodworkers/Mrs. Brenda Keith & Naples Central School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  381. Warning Line 773, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21431">1551</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  382. Warning Line 773, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21431">1551</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  383. Error Line 773, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21431">1551</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  384. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  385. Error Line 784, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Danville, VA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  386. Warning Line 785, Column 138: character "&" is the first character of a delimiter but occurred as data
    …/EIT/Jarrett Welding/Gamewood Data Systems & George Washington High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  387. Warning Line 786, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21463">1598</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  388. Warning Line 786, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21463">1598</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  389. Error Line 786, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21463">1598</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  390. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  391. Error Line 797, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>L.I.C., NY<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  392. Warning Line 798, Column 66: character "&" is the first character of a delimiter but occurred as data
    …Technology / The Port Authority of NY & NJ / The White House Restaurant / The …

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  393. Warning Line 798, Column 172: character "&" is the first character of a delimiter but occurred as data
    …ew Wave Holistic Health Center / Airborn Flightware & Aviation High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  394. Warning Line 799, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21466">1601</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  395. Warning Line 799, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21466">1601</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  396. Error Line 799, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21466">1601</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  397. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  398. Error Line 810, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Lafayette, IN<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  399. Warning Line 811, Column 41: character "&" is the first character of a delimiter but occurred as data
    		<td>Purdue FIRST Programs/Caterpillar & Jefferson High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  400. Warning Line 812, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21498">1646</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  401. Warning Line 812, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21498">1646</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  402. Error Line 812, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21498">1646</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  403. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  404. Error Line 823, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Lodi, CA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  405. Warning Line 825, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21510">1662</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  406. Warning Line 825, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21510">1662</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  407. Error Line 825, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21510">1662</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  408. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  409. Error Line 836, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Montvale, NJ<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  410. Warning Line 837, Column 54: character "&" is the first character of a delimiter but occurred as data
    …Falcon Jet / The Port Authority of NY & NJ / Dimensional Communications / Nu P…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  411. Warning Line 837, Column 154: character "&" is the first character of a delimiter but occurred as data
    …Cour / BAE Systems / Dr. Nancy Delboy & Pascack Valley Regional High School Di…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  412. Warning Line 838, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21518">1676</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  413. Warning Line 838, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21518">1676</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  414. Error Line 838, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21518">1676</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  415. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  416. Error Line 849, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Olathe, KS<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  417. Warning Line 850, Column 46: character "&" is the first character of a delimiter but occurred as data
    …wing Marion Kauffman Foundation/Black & Veatch/Farmers Insurance/Garmin/Honeyw…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  418. Warning Line 850, Column 107: character "&" is the first character of a delimiter but occurred as data
    …Insurance/Garmin/Honeywell/NIC/Opus/US ARMY & Olathe Northwest High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  419. Warning Line 851, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21579">1710</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  420. Warning Line 851, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21579">1710</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  421. Error Line 851, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21579">1710</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  422. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  423. Error Line 862, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Goleta, CA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  424. Warning Line 863, Column 145: character "&" is the first character of a delimiter but occurred as data
    …ms/ATK Space/Santa Barbara County ROP & Dos Pueblos High School Engineering Ac…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  425. Warning Line 864, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21599">1717</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  426. Warning Line 864, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21599">1717</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  427. Error Line 864, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21599">1717</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  428. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  429. Error Line 875, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Norman, OK<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  430. Warning Line 876, Column 70: character "&" is the first character of a delimiter but occurred as data
    …Engineering/Johnson Controls/Mickey Clagg & Moore Norman Technology Center</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  431. Warning Line 877, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21583">1742</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  432. Warning Line 877, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21583">1742</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  433. Error Line 877, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21583">1742</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  434. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  435. Error Line 888, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Richardson, TX<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  436. Warning Line 889, Column 74: character "&" is the first character of a delimiter but occurred as data
    …cal Institute/Pizza Hut, Inc/Siemens PLM Software & J.J Pearce High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  437. Warning Line 890, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21568">1745</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  438. Warning Line 890, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21568">1745</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  439. Error Line 890, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21568">1745</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  440. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  441. Error Line 901, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Gravatai, RS<br />Brazil</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  442. Warning Line 902, Column 107: character "&" is the first character of a delimiter but occurred as data
    …eeSurf/Armazem dos Parafusos/Brascril & AIDTEC & Houston Robotics & Heitor Vil…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  443. Warning Line 902, Column 116: character "&" is the first character of a delimiter but occurred as data
    …mazem dos Parafusos/Brascril & AIDTEC & Houston Robotics & Heitor Villa Lobos …

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  444. Warning Line 902, Column 135: character "&" is the first character of a delimiter but occurred as data
    …/Brascril & AIDTEC & Houston Robotics & Heitor Villa Lobos Estate High School<…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  445. Warning Line 903, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21625">1772</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  446. Warning Line 903, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21625">1772</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  447. Error Line 903, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21625">1772</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  448. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  449. Error Line 914, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Wallops Island, VA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  450. Warning Line 915, Column 212: character "&" is the first character of a delimiter but occurred as data
    …A Sounding Rocket Operations Contract & Arcadia High School & Pocomoke High Sc…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  451. Warning Line 915, Column 234: character "&" is the first character of a delimiter but occurred as data
    …ations Contract & Arcadia High School & Pocomoke High School & Worcester Techn…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  452. Warning Line 915, Column 257: character "&" is the first character of a delimiter but occurred as data
    …cadia High School & Pocomoke High School & Worcester Technical High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  453. Warning Line 916, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21652">1829</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  454. Warning Line 916, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21652">1829</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  455. Error Line 916, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21652">1829</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  456. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  457. Error Line 927, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Los Angeles , CA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  458. Warning Line 928, Column 196: character "&" is the first character of a delimiter but occurred as data
    …tions / Orthopaedic Hospital of Los Angeles & Milken Community High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  459. Warning Line 929, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21680">1836</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  460. Warning Line 929, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21680">1836</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  461. Error Line 929, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21680">1836</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  462. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  463. Error Line 940, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Haymarket, VA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  464. Warning Line 941, Column 122: character "&" is the first character of a delimiter but occurred as data
    …ht Sciences/ASCO/Thermopylae Sciences & Technology/Data Tactics/George Mason U…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  465. Warning Line 941, Column 201: character "&" is the first character of a delimiter but occurred as data
    …ge Mason University/Virginia National Guard/NOVA & Battlefield High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  466. Warning Line 942, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21675">1885</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  467. Warning Line 942, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21675">1885</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  468. Error Line 942, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21675">1885</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  469. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  470. Error Line 953, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Winter Park, FL<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  471. Warning Line 954, Column 54: character "&" is the first character of a delimiter but occurred as data
    …<td>Lockheed Martin / Disney / D6 Industries, Inc. & 4-H of Orange Co. Fla</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  472. Warning Line 955, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21724">1902</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  473. Warning Line 955, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21724">1902</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  474. Error Line 955, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21724">1902</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  475. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  476. Error Line 966, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Plainsboro, NJ<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  477. Warning Line 967, Column 124: character "&" is the first character of a delimiter but occurred as data
    …rs Squibb / Janssen / Friends of 1923 & West Windsor-Plainsboro High School No…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  478. Warning Line 967, Column 168: character "&" is the first character of a delimiter but occurred as data
    … Windsor-Plainsboro High School North & West Windsor-Plainsboro High School So…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  479. Warning Line 968, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21662">1923</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  480. Warning Line 968, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21662">1923</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  481. Error Line 968, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21662">1923</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  482. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  483. Error Line 979, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Detroit, MI<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  484. Warning Line 980, Column 84: character "&" is the first character of a delimiter but occurred as data
    …undation/D.R.M. Stakor and Associates & Frederick Douglass College Preparatory…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  485. Warning Line 981, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=21736">1941</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  486. Warning Line 981, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=21736">1941</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  487. Error Line 981, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=21736">1941</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  488. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  489. Error Line 992, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Yemin Orde, HA<br />Israel</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  490. Warning Line 993, Column 29: character "&" is the first character of a delimiter but occurred as data
    		<td>Israel Navy Ship Yard & Yemin Orde High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  491. Warning Line 994, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=22005">2214</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  492. Warning Line 994, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=22005">2214</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  493. Error Line 994, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=22005">2214</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  494. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  495. Error Line 1005, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Herzliya, M<br />Israel</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  496. Warning Line 1006, Column 49: cannot generate system identifier for general entity "D"
    …rzliya  Municipality/Microsoft Israel R&D & Handasaim-Herzliya High School</td>

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  497. Error Line 1006, Column 49: general entity "D" not defined and no default entity
    …rzliya  Municipality/Microsoft Israel R&D & Handasaim-Herzliya High School</td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  498. Warning Line 1006, Column 50: reference not terminated by REFC delimiter
    …rzliya  Municipality/Microsoft Israel R&D & Handasaim-Herzliya High School</td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  499. Error Line 1006, Column 50: reference to entity "D" for which no system identifier could be generated
    …rzliya  Municipality/Microsoft Israel R&D & Handasaim-Herzliya High School</td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  500. Info Line 1006, Column 48: entity was defined here
    …rzliya  Municipality/Microsoft Israel R&D & Handasaim-Herzliya High School</td>
  501. Warning Line 1006, Column 51: character "&" is the first character of a delimiter but occurred as data
    …rzliya  Municipality/Microsoft Israel R&D & Handasaim-Herzliya High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  502. Warning Line 1007, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=22018">2230</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  503. Warning Line 1007, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=22018">2230</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  504. Error Line 1007, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=22018">2230</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  505. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  506. Error Line 1018, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Newtown Square, PA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  507. Warning Line 1019, Column 63: character "&" is the first character of a delimiter but occurred as data
    …dmar Abrasive Company/North American Machine Works & The Episcopal Academy</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  508. Warning Line 1020, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=22016">2234</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  509. Warning Line 1020, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=22016">2234</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  510. Error Line 1020, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=22016">2234</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  511. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  512. Error Line 1031, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Honolulu, HI<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  513. Warning Line 1032, Column 60: character "&" is the first character of a delimiter but occurred as data
    …ems / Hawaiian Electric Company / ROC & Friends of Robotics / Armed Forces Com…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  514. Warning Line 1032, Column 154: character "&" is the first character of a delimiter but occurred as data
    …nication Electronic Association Education of Hawaii & Moanalua High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  515. Warning Line 1033, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=22216">2348</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  516. Warning Line 1033, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=22216">2348</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  517. Error Line 1033, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=22216">2348</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  518. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  519. Error Line 1044, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Oregon City, OR<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  520. Warning Line 1045, Column 119: character "&" is the first character of a delimiter but occurred as data
    … Autodesk Inc. / Starbucks / URS Electronics & Oregon City School District</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  521. Warning Line 1046, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=22406">2550</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  522. Warning Line 1046, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=22406">2550</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  523. Error Line 1046, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=22406">2550</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  524. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  525. Error Line 1057, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>New York , NY<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  526. Warning Line 1058, Column 109: character "&" is the first character of a delimiter but occurred as data
    …Edison/Chino's Auto Service/MTA NYC Transit & Long Island City High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  527. Warning Line 1059, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=22367">2579</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  528. Warning Line 1059, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=22367">2579</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  529. Error Line 1059, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=22367">2579</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  530. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  531. Error Line 1070, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Great Neck, NY<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  532. Warning Line 1072, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=22460">2638</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  533. Warning Line 1072, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=22460">2638</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  534. Error Line 1072, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=22460">2638</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  535. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  536. Error Line 1083, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Winterville, NC<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  537. Warning Line 1085, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=22350">2642</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  538. Warning Line 1085, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=22350">2642</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  539. Error Line 1085, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=22350">2642</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  540. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  541. Error Line 1096, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Marlton, NJ<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  542. Warning Line 1097, Column 28: character "&" is the first character of a delimiter but occurred as data
    		<td>Lockheed Martin/NASA & Lenape Regional High School District & Cherokee Hi…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  543. Warning Line 1097, Column 67: character "&" is the first character of a delimiter but occurred as data
    … Lenape Regional High School District & Cherokee High School & Lenape High Sch…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  544. Warning Line 1097, Column 90: character "&" is the first character of a delimiter but occurred as data
    … Regional High School District & Cherokee High School & Lenape High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  545. Warning Line 1098, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=23227">2729</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  546. Warning Line 1098, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=23227">2729</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  547. Error Line 1098, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=23227">2729</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  548. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  549. Error Line 1109, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Batavia, IL<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  550. Warning Line 1110, Column 28: character "&" is the first character of a delimiter but occurred as data
    		<td>Caterpillar Inc/NASA & Batavia Robotics</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  551. Warning Line 1111, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=23359">2741</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  552. Warning Line 1111, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=23359">2741</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  553. Error Line 1111, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=23359">2741</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  554. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  555. Error Line 1122, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Jackson, TN<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  556. Warning Line 1123, Column 27: character "&" is the first character of a delimiter but occurred as data
    		<td>DeWALT / PTC / NASA & Liberty Technology Magnet High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  557. Warning Line 1124, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=23141">2775</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  558. Warning Line 1124, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=23141">2775</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  559. Error Line 1124, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=23141">2775</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  560. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  561. Error Line 1135, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Laveen, AZ<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  562. Warning Line 1136, Column 60: character "&" is the first character of a delimiter but occurred as data
    …neral Dynamics Advanced Information Systems & Betty H. Fairfax High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  563. Warning Line 1137, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=22995">2844</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  564. Warning Line 1137, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=22995">2844</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  565. Error Line 1137, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=22995">2844</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  566. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  567. Error Line 1148, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Mill Creek, WA<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  568. Warning Line 1149, Column 118: character "&" is the first character of a delimiter but occurred as data
    …igeru Tsubota/Platt/Computer Concepts/Fluke & Henry M. Jackson High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  569. Warning Line 1150, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=23185">2910</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  570. Warning Line 1150, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=23185">2910</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  571. Error Line 1150, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=23185">2910</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  572. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  573. Error Line 1161, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Dickinson, TX<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  574. Warning Line 1162, Column 250: character "&" is the first character of a delimiter but occurred as data
    …ions, Inc/Merchants' Choice Card Services of Texas & Dickinson High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  575. Warning Line 1163, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=24097">2936</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  576. Warning Line 1163, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=24097">2936</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  577. Error Line 1163, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=24097">2936</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  578. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>
  579. Error Line 1174, Column 13: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
    		<td nowrap>Yonkers, NY<br />USA</td>

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  580. Warning Line 1175, Column 89: character "&" is the first character of a delimiter but occurred as data
    …dation/IBM/Manhattan College School Of Engineering & Riverside High School</td>

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  581. Warning Line 1176, Column 39: reference not terminated by REFC delimiter
    		<td><a href="?page=team_details&tpid=24685">3059</a></td>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  582. Warning Line 1176, Column 39: reference to external entity in attribute value
    		<td><a href="?page=team_details&tpid=24685">3059</a></td>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  583. Error Line 1176, Column 39: reference to entity "tpid" for which no system identifier could be generated
    		<td><a href="?page=team_details&tpid=24685">3059</a></td>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  584. Info Line 71, Column 34: entity was defined here
    		<td><a href="?page=team_details&tpid=20752">11</a></td>

↑ Top