Errors found while checking this document as XHTML 1.0 Transitional!

Result: 258 Errors, 207 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.

↑ Top

Validation Output: 258 Errors

  1. Error Line 7, Column 17: there is no attribute "property"
     <meta property="og:image" content="http://www.lawyersgunsmoneyblog.com/wp-cont…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  2. Warning Line 45, Column 34: character "&" is the first character of a delimiter but occurred as data
        if ((randValue == lastIndex) && (quotes.length > 1)) {

    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.
  3. Warning Line 45, Column 35: character "&" is the first character of a delimiter but occurred as data
        if ((randValue == lastIndex) && (quotes.length > 1)) {

    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.
  4. Warning Line 117, Column 80: cannot generate system identifier for general entity "id"
    …k/pages/dynamic.asp?page=staffdetails&id=dbrockington" TARGET="_blank">Website…

    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.

  5. Error Line 117, Column 80: general entity "id" not defined and no default entity
    …k/pages/dynamic.asp?page=staffdetails&id=dbrockington" TARGET="_blank">Website…

    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.

  6. Warning Line 117, Column 82: reference not terminated by REFC delimiter
    …pages/dynamic.asp?page=staffdetails&id=dbrockington" TARGET="_blank">Website</…

    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.

  7. Warning Line 117, Column 82: reference to external entity in attribute value
    …pages/dynamic.asp?page=staffdetails&id=dbrockington" TARGET="_blank">Website</…

    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;'.

  8. Error Line 117, Column 82: reference to entity "id" for which no system identifier could be generated
    …pages/dynamic.asp?page=staffdetails&id=dbrockington" TARGET="_blank">Website</…

    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.

  9. Info Line 117, Column 79: entity was defined here
    …uk/pages/dynamic.asp?page=staffdetails&id=dbrockington" TARGET="_blank">Websit…
  10. Error Line 117, Column 104: there is no attribute "TARGET"
    …dynamic.asp?page=staffdetails&id=dbrockington" TARGET="_blank">Website</a></li>

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  11. Error Line 135, Column 11: end tag for "ul" which is not finished
    		<ul></ul>

    Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

    Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

  12. Error Line 146, Column 18: end tag for "ul" which is not finished
             <ul></ul>

    Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

    Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

  13. Error Line 247, Column 5: end tag for "ul" which is not finished
    </ul>

    Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

    Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

  14. Error Line 294, Column 5: end tag for "ul" which is not finished
    </ul>

    Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

    Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

  15. Error Line 471, Column 5: end tag for "ul" which is not finished
    </ul>

    Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

    Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

  16. Error Line 524, Column 5: end tag for "ul" which is not finished
    </ul> 

    Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

    Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

  17. Error Line 527, Column 7: end tag for "li" omitted, but OMITTAG NO was specified
    	</div>

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

  18. Info Line 477, Column 1: start tag was here
    <li class="last-item">DJW
  19. Error Line 527, Column 7: end tag for "ul" omitted, but OMITTAG NO was specified
    	</div>

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

  20. Info Line 114, Column 3: start tag was here
    		<ul class="clearfix">
  21. Warning Line 578, Column 638: cannot generate system identifier for general entity "fs"
    …https://mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-mot…

    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.

  22. Error Line 578, Column 638: general entity "fs" not defined and no default entity
    …https://mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-mot…

    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.

  23. Warning Line 578, Column 640: reference not terminated by REFC delimiter
    …tps://mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motio…

    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 578, Column 640: reference to external entity in attribute value
    …tps://mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motio…

    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 578, Column 640: reference to entity "fs" for which no system identifier could be generated
    …tps://mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motio…

    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 578, Column 637: entity was defined here
    …"https://mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-mo…
  27. Warning Line 578, Column 643: cannot generate system identifier for general entity "to"
    …://mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motion%2…

    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.

  28. Error Line 578, Column 643: general entity "to" not defined and no default entity
    …://mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motion%2…

    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.

  29. Warning Line 578, Column 645: reference not terminated by REFC delimiter
    …/mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motion%20c…

    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.

  30. Warning Line 578, Column 645: reference to external entity in attribute value
    …/mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motion%20c…

    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;'.

  31. Error Line 578, Column 645: reference to entity "to" for which no system identifier could be generated
    …/mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motion%20c…

    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.

  32. Info Line 578, Column 642: entity was defined here
    …s://mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motion%…
  33. Warning Line 578, Column 646: cannot generate system identifier for general entity "su"
    …mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motion%20ca…

    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.

  34. Error Line 578, Column 646: general entity "su" not defined and no default entity
    …mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motion%20ca…

    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.

  35. Warning Line 578, Column 648: reference not terminated by REFC delimiter
    …il.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motion%20car%…

    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.

  36. Warning Line 578, Column 648: reference to external entity in attribute value
    …il.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motion%20car%…

    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;'.

  37. Error Line 578, Column 648: reference to entity "su" for which no system identifier could be generated
    …il.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motion%20car%…

    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.

  38. Info Line 578, Column 645: entity was defined here
    …/mail.google.com/mail/?view=cm&fs=1&to&su=Brian%20Leiter%27s%20slow-motion%20c…
  39. Warning Line 578, Column 710: cannot generate system identifier for general entity "body"
    …ow-motion%20car%20crash%20accelerates&body=http%3A%2F%2Fwww.lawyersgunsmoneybl…

    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.

  40. Error Line 578, Column 710: general entity "body" not defined and no default entity
    …ow-motion%20car%20crash%20accelerates&body=http%3A%2F%2Fwww.lawyersgunsmoneybl…

    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.

  41. Warning Line 578, Column 714: reference not terminated by REFC delimiter
    …otion%20car%20crash%20accelerates&body=http%3A%2F%2Fwww.lawyersgunsmoneyblog.c…

    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.

  42. Warning Line 578, Column 714: reference to external entity in attribute value
    …otion%20car%20crash%20accelerates&body=http%3A%2F%2Fwww.lawyersgunsmoneyblog.c…

    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;'.

  43. Error Line 578, Column 714: reference to entity "body" for which no system identifier could be generated
    …otion%20car%20crash%20accelerates&body=http%3A%2F%2Fwww.lawyersgunsmoneyblog.c…

    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.

  44. Info Line 578, Column 709: entity was defined here
    …low-motion%20car%20crash%20accelerates&body=http%3A%2F%2Fwww.lawyersgunsmoneyb…
  45. Warning Line 578, Column 820: cannot generate system identifier for general entity "ui"
    …rs-slow-motion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style=…

    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.

  46. Error Line 578, Column 820: general entity "ui" not defined and no default entity
    …rs-slow-motion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style=…

    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.

  47. Warning Line 578, Column 822: reference not terminated by REFC delimiter
    …-slow-motion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="c…

    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.

  48. Warning Line 578, Column 822: reference to external entity in attribute value
    …-slow-motion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="c…

    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;'.

  49. Error Line 578, Column 822: reference to entity "ui" for which no system identifier could be generated
    …-slow-motion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="c…

    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.

  50. Info Line 578, Column 819: entity was defined here
    …ers-slow-motion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style…
  51. Warning Line 578, Column 825: cannot generate system identifier for general entity "tf"
    …ow-motion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="curs…

    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.

  52. Error Line 578, Column 825: general entity "tf" not defined and no default entity
    …ow-motion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="curs…

    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.

  53. Warning Line 578, Column 827: reference not terminated by REFC delimiter
    …-motion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="cursor…

    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.

  54. Warning Line 578, Column 827: reference to external entity in attribute value
    …-motion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="cursor…

    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;'.

  55. Error Line 578, Column 827: reference to entity "tf" for which no system identifier could be generated
    …-motion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="cursor…

    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.

  56. Info Line 578, Column 824: entity was defined here
    …low-motion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="cur…
  57. Warning Line 578, Column 830: cannot generate system identifier for general entity "shva"
    …tion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="cursor:po…

    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.

  58. Error Line 578, Column 830: general entity "shva" not defined and no default entity
    …tion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="cursor:po…

    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.

  59. Warning Line 578, Column 834: reference not terminated by REFC delimiter
    …-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="cursor:pointe…

    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.

  60. Warning Line 578, Column 834: reference to external entity in attribute value
    …-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="cursor:pointe…

    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;'.

  61. Error Line 578, Column 834: reference to entity "shva" for which no system identifier could be generated
    …-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="cursor:pointe…

    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.

  62. Info Line 578, Column 829: entity was defined here
    …otion-car-crash-accelerating&ui=2&tf=1&shva=1"></a></li><li><a style="cursor:p…
  63. Error Line 578, Column 903: there is no attribute "onMouseOut"
    …or:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  64. Error Line 578, Column 1000: there is no attribute "onMouseOver"
    …'), event, 'post-62715')" onMouseOver="more(this,'post-62715')"><img style='ma…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  65. Error Line 578, Column 1139: required attribute "alt" not specified
    …tent/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMou…

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

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  66. Error Line 578, Column 1143: end tag for "img" omitted, but OMITTAG NO was specified
    …/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOu…

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

  67. Info Line 578, Column 1026: start tag was here
    …onMouseOver="more(this,'post-62715')"><img style='margin-top:9px' src='http://…
  68. Error Line 578, Column 1170: there is no attribute "onMouseout"
    …re.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-62715')"…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  69. Warning Line 588, Column 3673: cannot generate system identifier for general entity "title"
    …rs-slow-motion-car-crash-accelerating&title=Brian%20Leiter%27s%20slow-motion%2…

    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.

  70. Error Line 588, Column 3673: general entity "title" not defined and no default entity
    …rs-slow-motion-car-crash-accelerating&title=Brian%20Leiter%27s%20slow-motion%2…

    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.

  71. Warning Line 588, Column 3678: reference not terminated by REFC delimiter
    …ow-motion-car-crash-accelerating&title=Brian%20Leiter%27s%20slow-motion%20car%…

    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.

  72. Warning Line 588, Column 3678: reference to external entity in attribute value
    …ow-motion-car-crash-accelerating&title=Brian%20Leiter%27s%20slow-motion%20car%…

    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;'.

  73. Error Line 588, Column 3678: reference to entity "title" for which no system identifier could be generated
    …ow-motion-car-crash-accelerating&title=Brian%20Leiter%27s%20slow-motion%20car%…

    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.

  74. Info Line 588, Column 3672: entity was defined here
    …ers-slow-motion-car-crash-accelerating&title=Brian%20Leiter%27s%20slow-motion%…
  75. Error Line 588, Column 3796: there is no attribute "onClick"
    …e="heigth:32px;width:32px"><a onClick="javascript:var%20ipinsite='Good%20Vibes…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  76. Error Line 588, Column 4254: document type does not allow element "a" here; missing one of "object", "span", "bdo", "applet", "iframe", "tt", "i", "b", "u", "s", "strike", "big", "small", "font", "em", "strong", "dfn", "code", "q", "samp", "kbd", "var", "cite", "abbr", "acronym", "sub", "sup", "label", "ins", "del" start-tag
    …ive messages (images and videos only)'> <img style='' src='http://www.lawyersg…

    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>").

  77. Error Line 588, Column 4368: required attribute "alt" not specified
    …sociable/images/option1/32/vuible.png'></a></a></li><li style="heigth:32px;wid…

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

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  78. Error Line 588, Column 4372: end tag for "img" omitted, but OMITTAG NO was specified
    …able/images/option1/32/vuible.png'></a></a></li><li style="heigth:32px;width:3…

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

  79. Info Line 588, Column 4256: start tag was here
    …e messages (images and videos only)'> <img style='' src='http://www.lawyersgun…
  80. Error Line 594, Column 158: required attribute "alt" not specified
    …ww.lawyersgunsmoneyblog.com/wp-content/plugins/sociable/images/closelabel.png">

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

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  81. Error Line 594, Column 159: end tag for "img" omitted, but OMITTAG NO was specified
    …ww.lawyersgunsmoneyblog.com/wp-content/plugins/sociable/images/closelabel.png">

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

  82. Info Line 594, Column 5: start tag was here
    		  <img onclick="hide_sociable('post-62715',true)" title="close" src="http://w…
  83. Error Line 602, Column 148: there is no attribute "data-text"
    …"https://twitter.com/share" data-text="Brian Leiter's slow-motion car crash ac…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  84. Error Line 602, Column 303: there is no attribute "data-url"
    …tion-car-crash-accelerating" data-url="http://www.lawyersgunsmoneyblog.com/201…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  85. Error Line 602, Column 438: there is no attribute "data-count"
    …ass="twitter-share-button" data-count="horizontal">Tweet</a><script type="text…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  86. Warning Line 602, Column 723: cannot generate system identifier for general entity "send"
    …rs-slow-motion-car-crash-accelerating&send=false&layout=button_count&show_face…

    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.

  87. Error Line 602, Column 723: general entity "send" not defined and no default entity
    …rs-slow-motion-car-crash-accelerating&send=false&layout=button_count&show_face…

    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. Warning Line 602, Column 727: reference not terminated by REFC delimiter
    …low-motion-car-crash-accelerating&send=false&layout=button_count&show_faces=fa…

    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.

  89. Warning Line 602, Column 727: reference to external entity in attribute value
    …low-motion-car-crash-accelerating&send=false&layout=button_count&show_faces=fa…

    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;'.

  90. Error Line 602, Column 727: reference to entity "send" for which no system identifier could be generated
    …low-motion-car-crash-accelerating&send=false&layout=button_count&show_faces=fa…

    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.

  91. Info Line 602, Column 722: entity was defined here
    …ers-slow-motion-car-crash-accelerating&send=false&layout=button_count&show_fac…
  92. Warning Line 602, Column 734: cannot generate system identifier for general entity "layout"
    …ion-car-crash-accelerating&send=false&layout=button_count&show_faces=false&act…

    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.

  93. Error Line 602, Column 734: general entity "layout" not defined and no default entity
    …ion-car-crash-accelerating&send=false&layout=button_count&show_faces=false&act…

    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.

  94. Warning Line 602, Column 740: reference not terminated by REFC delimiter
    …r-crash-accelerating&send=false&layout=button_count&show_faces=false&action=li…

    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.

  95. Warning Line 602, Column 740: reference to external entity in attribute value
    …r-crash-accelerating&send=false&layout=button_count&show_faces=false&action=li…

    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;'.

  96. Error Line 602, Column 740: reference to entity "layout" for which no system identifier could be generated
    …r-crash-accelerating&send=false&layout=button_count&show_faces=false&action=li…

    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.

  97. Info Line 602, Column 733: entity was defined here
    …tion-car-crash-accelerating&send=false&layout=button_count&show_faces=false&ac…
  98. Warning Line 602, Column 754: cannot generate system identifier for general entity "show_faces"
    …rating&send=false&layout=button_count&show_faces=false&action=like&colorscheme…

    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.

  99. Error Line 602, Column 754: general entity "show_faces" not defined and no default entity
    …rating&send=false&layout=button_count&show_faces=false&action=like&colorscheme…

    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.

  100. Warning Line 602, Column 764: reference not terminated by REFC delimiter
    …d=false&layout=button_count&show_faces=false&action=like&colorscheme=light&fon…

    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.

  101. Warning Line 602, Column 764: reference to external entity in attribute value
    …d=false&layout=button_count&show_faces=false&action=like&colorscheme=light&fon…

    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;'.

  102. Error Line 602, Column 764: reference to entity "show_faces" for which no system identifier could be generated
    …d=false&layout=button_count&show_faces=false&action=like&colorscheme=light&fon…

    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.

  103. Info Line 602, Column 753: entity was defined here
    …erating&send=false&layout=button_count&show_faces=false&action=like&colorschem…
  104. Warning Line 602, Column 771: cannot generate system identifier for general entity "action"
    …&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scro…

    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.

  105. Error Line 602, Column 771: general entity "action" not defined and no default entity
    …&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scro…

    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.

  106. Warning Line 602, Column 777: reference not terminated by REFC delimiter
    …t=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling=…

    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.

  107. Warning Line 602, Column 777: reference to external entity in attribute value
    …t=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling=…

    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;'.

  108. Error Line 602, Column 777: reference to entity "action" for which no system identifier could be generated
    …t=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling=…

    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.

  109. Info Line 602, Column 770: entity was defined here
    …e&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scr…
  110. Warning Line 602, Column 783: cannot generate system identifier for general entity "colorscheme"
    …on_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" f…

    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.

  111. Error Line 602, Column 783: general entity "colorscheme" not defined and no default entity
    …on_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" f…

    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.

  112. Warning Line 602, Column 794: reference not terminated by REFC delimiter
    …ow_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder=…

    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.

  113. Warning Line 602, Column 794: reference to external entity in attribute value
    …ow_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder=…

    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;'.

  114. Error Line 602, Column 794: reference to entity "colorscheme" for which no system identifier could be generated
    …ow_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder=…

    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.

  115. Info Line 602, Column 782: entity was defined here
    …ton_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" …
  116. Warning Line 602, Column 801: cannot generate system identifier for general entity "font"
    …s=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" sty…

    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.

  117. Error Line 602, Column 801: general entity "font" not defined and no default entity
    …s=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" sty…

    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.

  118. Warning Line 602, Column 805: reference not terminated by REFC delimiter
    …lse&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="…

    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 602, Column 805: reference to external entity in attribute value
    …lse&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="…

    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 602, Column 805: reference to entity "font" for which no system identifier could be generated
    …lse&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="…

    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 602, Column 800: entity was defined here
    …es=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" st…
  122. Error Line 602, Column 917: there is no attribute "allowTransparency"
    …t:32px;width:100px" allowTransparency="true"></iframe></li><li id="Google_p"><…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  123. Error Line 602, Column 978: there is no attribute "annotation"
    …i id="Google_p"><g:plusone annotation="bubble" href="http://www.lawyersgunsmon…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  124. Error Line 602, Column 992: there is no attribute "href"
    …"><g:plusone annotation="bubble" href="http://www.lawyersgunsmoneyblog.com/201…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  125. Error Line 602, Column 1092: there is no attribute "size"
    …w-motion-car-crash-accelerating" size="medium"></g:plusone></li><li id="Linked…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  126. Error Line 602, Column 1100: element "g:plusone" undefined
    …-car-crash-accelerating" size="medium"></g:plusone></li><li id="LinkedIn_Count…

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  127. Error Line 602, Column 1258: there is no attribute "data-url"
    …ript><script type="IN/Share" data-url="http://www.lawyersgunsmoneyblog.com/201…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  128. Error Line 602, Column 1366: there is no attribute "data-counter"
    …-car-crash-accelerating" data-counter="right"></script></li></ul></div><!-- En…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  129. Error Line 1981, Column 12: document type does not allow element "blockquote" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
    <blockquote>Thomson Reuters was ranked as Canada&#8217;s &#8220;leading corpora…

    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>").

  130. Error Line 1981, Column 219: end tag for "blockquote" omitted, but OMITTAG NO was specified
    … is headquartered at 3 Times Square, Manhattan, New York City.</p></blockquote>

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

  131. Info Line 1981, Column 1: start tag was here
    <blockquote>Thomson Reuters was ranked as Canada&#8217;s &#8220;leading corpora…
  132. Error Line 1981, Column 232: end tag for element "blockquote" which is not open
    … is headquartered at 3 Times Square, Manhattan, New York City.</p></blockquote>

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

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  133. Error Line 2113, Column 12: document type does not allow element "blockquote" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
    <blockquote>calling me “unprofessional” is probably defamatory per se in Canada…

    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>").

  134. Error Line 2115, Column 107: end tag for "blockquote" omitted, but OMITTAG NO was specified
    …m trying to plan out my litigation strategy for the next year!</p></blockquote>

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

  135. Info Line 2113, Column 1: start tag was here
    <blockquote>calling me “unprofessional” is probably defamatory per se in Canada…
  136. Error Line 2115, Column 120: end tag for element "blockquote" which is not open
    …m trying to plan out my litigation strategy for the next year!</p></blockquote>

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

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  137. Error Line 2834, Column 12: document type does not allow element "blockquote" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
    <blockquote>Carrie finds it very unsettling – scary, even – that Leiter assumed…

    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>").

  138. Error Line 2834, Column 258: end tag for "blockquote" omitted, but OMITTAG NO was specified
    …or fear of similar interpretation, leading to similar results.</p></blockquote>

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

  139. Info Line 2834, Column 1: start tag was here
    <blockquote>Carrie finds it very unsettling – scary, even – that Leiter assumed…
  140. Error Line 2834, Column 271: end tag for element "blockquote" which is not open
    …or fear of similar interpretation, leading to similar results.</p></blockquote>

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

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  141. Error Line 5325, Column 130: end tag for "a" omitted, but OMITTAG NO was specified
    …ttps://files.nyu.edu/dv26/public/Statement_of_Concern.html" rel="nofollow"></p>

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

  142. Info Line 5325, Column 42: start tag was here
    …p>I want to add a link from NewAPPS.  <a href="https://files.nyu.edu/dv26/publ…
  143. Error Line 5326, Column 99: end tag for element "a" which is not open
    …omments reveal more of the history of BL&#8217;s bullying and paranoia.</a></p>

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

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  144. Error Line 6175, Column 250: required attribute "alt" not specified
    …yblog.com/wp-content/uploads/2013/02/lgm-podcast-title-e1360545152614.png"></a>

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

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  145. Error Line 6175, Column 254: end tag for "img" omitted, but OMITTAG NO was specified
    …yblog.com/wp-content/uploads/2013/02/lgm-podcast-title-e1360545152614.png"></a>

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

  146. Info Line 6175, Column 140: start tag was here
    …smoneyblog.com/category/podcast/feed"><img src="http://www.lawyersgunsmoneyblo…
  147. Error Line 6179, Column 51: end tag for "input" omitted, but OMITTAG NO was specified
    <input type="hidden" name="cmd" value="_s-xclick">

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

  148. Info Line 6179, Column 1: start tag was here
    <input type="hidden" name="cmd" value="_s-xclick">
  149. Error Line 6181, Column 3: end tag for "input" omitted, but OMITTAG NO was specified
    ">

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

  150. Info Line 6180, Column 1: start tag was here
    <input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHNwYJKoZIh…
  151. Error Line 6182, Column 87: there is no attribute "border"
    …en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safe…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  152. Error Line 6182, Column 157: end tag for "input" omitted, but OMITTAG NO was specified
    …" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">

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

  153. Info Line 6182, Column 1: start tag was here
    <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" …
  154. Error Line 6183, Column 96: end tag for "img" omitted, but OMITTAG NO was specified
    …er="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">

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

  155. Info Line 6183, Column 1: start tag was here
    <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width…
  156. Error Line 6188, Column 213: required attribute "alt" not specified
    …g.com/wp-content/uploads/2012/05/lgmblog-sunant-web-development.png"></a></div>

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

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  157. Error Line 6188, Column 217: end tag for "img" omitted, but OMITTAG NO was specified
    …g.com/wp-content/uploads/2012/05/lgmblog-sunant-web-development.png"></a></div>

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

  158. Info Line 6188, Column 105: start tag was here
    …get"><a href="http://www.sunant.com/"><img src="http://www.lawyersgunsmoneyblo…
  159. Warning Line 6202, Column 130: cannot generate system identifier for general entity "o"
    …rcm.amazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866…

    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.

  160. Error Line 6202, Column 130: general entity "o" not defined and no default entity
    …rcm.amazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866…

    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.

  161. Warning Line 6202, Column 131: reference not terminated by REFC delimiter
    …cm.amazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=33778660…

    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.

  162. Warning Line 6202, Column 131: reference to external entity in attribute value
    …cm.amazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=33778660…

    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;'.

  163. Error Line 6202, Column 131: reference to entity "o" for which no system identifier could be generated
    …cm.amazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=33778660…

    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.

  164. Info Line 6202, Column 129: entity was defined here
    …/rcm.amazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=337786…
  165. Warning Line 6202, Column 134: cannot generate system identifier for general entity "p"
    …amazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&…

    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.

  166. Error Line 6202, Column 134: general entity "p" not defined and no default entity
    …amazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&…

    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.

  167. Warning Line 6202, Column 135: reference not terminated by REFC delimiter
    …mazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&f…

    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.

  168. Warning Line 6202, Column 135: reference to external entity in attribute value
    …mazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&f…

    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;'.

  169. Error Line 6202, Column 135: reference to entity "p" for which no system identifier could be generated
    …mazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&f…

    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.

  170. Info Line 6202, Column 133: entity was defined here
    ….amazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011…
  171. Warning Line 6202, Column 139: cannot generate system identifier for general entity "l"
    …n.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=0…

    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.

  172. Error Line 6202, Column 139: general entity "l" not defined and no default entity
    …n.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=0…

    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.

  173. Warning Line 6202, Column 140: reference not terminated by REFC delimiter
    ….com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=00…

    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.

  174. Warning Line 6202, Column 140: reference to external entity in attribute value
    ….com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=00…

    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;'.

  175. Error Line 6202, Column 140: reference to entity "l" for which no system identifier could be generated
    ….com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=00…

    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.

  176. Info Line 6202, Column 138: entity was defined here
    …on.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=…
  177. Warning Line 6202, Column 145: cannot generate system identifier for general entity "mode"
    …e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=000000&…

    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.

  178. Error Line 6202, Column 145: general entity "mode" not defined and no default entity
    …e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=000000&…

    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.

  179. Warning Line 6202, Column 149: reference not terminated by REFC delimiter
    …?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=…

    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 6202, Column 149: reference to external entity in attribute value
    …?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=…

    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 6202, Column 149: reference to entity "mode" for which no system identifier could be generated
    …?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=…

    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 6202, Column 144: entity was defined here
    …/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=000000…
  183. Warning Line 6202, Column 156: cannot generate system identifier for general entity "browse"
    …unandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank&…

    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.

  184. Error Line 6202, Column 156: general entity "browse" not defined and no default entity
    …unandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank&…

    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.

  185. Warning Line 6202, Column 162: reference not terminated by REFC delimiter
    …on-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=33…

    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.

  186. Warning Line 6202, Column 162: reference to external entity in attribute value
    …on-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=33…

    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;'.

  187. Error Line 6202, Column 162: reference to entity "browse" for which no system identifier could be generated
    …on-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=33…

    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.

  188. Info Line 6202, Column 155: entity was defined here
    …gunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank…
  189. Warning Line 6202, Column 174: cannot generate system identifier for general entity "fc1"
    …14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFF…

    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.

  190. Error Line 6202, Column 174: general entity "fc1" not defined and no default entity
    …14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFF…

    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.

  191. Warning Line 6202, Column 177: reference not terminated by REFC delimiter
    …l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF…

    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.

  192. Warning Line 6202, Column 177: reference to external entity in attribute value
    …l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF…

    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;'.

  193. Error Line 6202, Column 177: reference to entity "fc1" for which no system identifier could be generated
    …l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF…

    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.

  194. Info Line 6202, Column 173: entity was defined here
    …=14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FF…
  195. Warning Line 6202, Column 185: cannot generate system identifier for general entity "lt1"
    …de=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" …

    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.

  196. Error Line 6202, Column 185: general entity "lt1" not defined and no default entity
    …de=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" …

    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.

  197. Warning Line 6202, Column 188: reference not terminated by REFC delimiter
    …books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" mar…

    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.

  198. Warning Line 6202, Column 188: reference to external entity in attribute value
    …books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" mar…

    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;'.

  199. Error Line 6202, Column 188: reference to entity "lt1" for which no system identifier could be generated
    …books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" mar…

    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.

  200. Info Line 6202, Column 184: entity was defined here
    …ode=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr"…
  201. Warning Line 6202, Column 196: cannot generate system identifier for general entity "lc1"
    …owse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth…

    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.

  202. Error Line 6202, Column 196: general entity "lc1" not defined and no default entity
    …owse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth…

    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. Warning Line 6202, Column 199: reference not terminated by REFC delimiter
    …e=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0…

    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.

  204. Warning Line 6202, Column 199: reference to external entity in attribute value
    …e=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0…

    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;'.

  205. Error Line 6202, Column 199: reference to entity "lc1" for which no system identifier could be generated
    …e=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0…

    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.

  206. Info Line 6202, Column 195: entity was defined here
    …rowse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidt…
  207. Warning Line 6202, Column 207: cannot generate system identifier for general entity "bg1"
    …6011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" margin…

    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.

  208. Error Line 6202, Column 207: general entity "bg1" not defined and no default entity
    …6011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" margin…

    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. Warning Line 6202, Column 210: reference not terminated by REFC delimiter
    …1&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" marginhei…

    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.

  210. Warning Line 6202, Column 210: reference to external entity in attribute value
    …1&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" marginhei…

    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;'.

  211. Error Line 6202, Column 210: reference to entity "bg1" for which no system identifier could be generated
    …1&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" marginhei…

    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.

  212. Info Line 6202, Column 206: entity was defined here
    …66011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" margi…
  213. Warning Line 6202, Column 218: cannot generate system identifier for general entity "f"
    …0000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" marginheight="0" …

    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.

  214. Error Line 6202, Column 218: general entity "f" not defined and no default entity
    …0000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" marginheight="0" …

    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. Warning Line 6202, Column 219: reference not terminated by REFC delimiter
    …000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" marginheight="0" w…

    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.

  216. Warning Line 6202, Column 219: reference to external entity in attribute value
    …000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" marginheight="0" w…

    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;'.

  217. Error Line 6202, Column 219: reference to entity "f" for which no system identifier could be generated
    …000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" marginheight="0" w…

    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.

  218. Info Line 6202, Column 217: entity was defined here
    …00000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" marginheight="0"…
  219. Error Line 6202, Column 290: there is no attribute "border"
    …t="0" width="160" height="600" border="0" frameborder="0" style="border:none;"…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  220. Error Line 6285, Column 173: there is no attribute "data-widget-id"
    …awyers-guns-and-money" data-widget-id="324714165296037888">Tweets from @drfarl…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  221. Error Line 6286, Column 8: required attribute "type" not specified
    <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.te…

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

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  222. Error Line 6307, Column 236: required attribute "alt" not specified
    ….com/wp-content/uploads/2012/01/Lawyer-of-the-Month-e1325796365969.jpeg"><br />

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

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  223. Error Line 6307, Column 237: end tag for "img" omitted, but OMITTAG NO was specified
    ….com/wp-content/uploads/2012/01/Lawyer-of-the-Month-e1325796365969.jpeg"><br />

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

  224. Info Line 6307, Column 123: start tag was here
    …an></h3>			<div class="textwidget"><p><img src="http://www.lawyersgunsmoneyblo…
  225. Error Line 6309, Column 120: required attribute "alt" not specified
    …m/wp-content/uploads/2012/01/Clio-Awards-2011-series-e1325796312863.jpg"><br />

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

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  226. Error Line 6309, Column 121: end tag for "img" omitted, but OMITTAG NO was specified
    …m/wp-content/uploads/2012/01/Clio-Awards-2011-series-e1325796312863.jpg"><br />

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

  227. Info Line 6309, Column 4: start tag was here
    <p><img src="http://www.lawyersgunsmoneyblog.com/wp-content/uploads/2012/01/Cli…
  228. Error Line 6320, Column 79: required attribute "type" not specified
    …anguage="javascript" src="http://cache.blogads.com/882138591/feed.js"></script>

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

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  229. Warning Line 6323, Column 248: cannot generate system identifier for general entity "OneJS"
    …com/widgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=…

    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.

  230. Error Line 6323, Column 248: general entity "OneJS" not defined and no default entity
    …com/widgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=…

    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.

  231. Warning Line 6323, Column 253: reference not terminated by REFC delimiter
    …idgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&so…

    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.

  232. Warning Line 6323, Column 253: reference to external entity in attribute value
    …idgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&so…

    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;'.

  233. Error Line 6323, Column 253: reference to entity "OneJS" for which no system identifier could be generated
    …idgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&so…

    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.

  234. Info Line 6323, Column 247: entity was defined here
    ….com/widgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace…
  235. Warning Line 6323, Column 256: cannot generate system identifier for general entity "Operation"
    …ets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&sourc…

    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.

  236. Error Line 6323, Column 256: general entity "Operation" not defined and no default entity
    …ets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&sourc…

    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.

  237. Warning Line 6323, Column 265: reference not terminated by REFC delimiter
    …viceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=…

    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.

  238. Warning Line 6323, Column 265: reference to external entity in attribute value
    …viceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=…

    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;'.

  239. Error Line 6323, Column 265: reference to entity "Operation" for which no system identifier could be generated
    …viceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=…

    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.

  240. Info Line 6323, Column 255: entity was defined here
    …gets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&sour…
  241. Warning Line 6323, Column 276: cannot generate system identifier for general entity "MarketPlace"
    …=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_t…

    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.

  242. Error Line 6323, Column 276: general entity "MarketPlace" not defined and no default entity
    …=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_t…

    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.

  243. Warning Line 6323, Column 287: reference not terminated by REFC delimiter
    …neJS=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product…

    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.

  244. Warning Line 6323, Column 287: reference to external entity in attribute value
    …neJS=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product…

    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;'.

  245. Error Line 6323, Column 287: reference to entity "MarketPlace" for which no system identifier could be generated
    …neJS=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product…

    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.

  246. Info Line 6323, Column 275: entity was defined here
    …n=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_…
  247. Warning Line 6323, Column 291: cannot generate system identifier for general entity "source"
    …=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_lin…

    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.

  248. Error Line 6323, Column 291: general entity "source" not defined and no default entity
    …=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_lin…

    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.

  249. Warning Line 6323, Column 297: reference not terminated by REFC delimiter
    …ration=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&trac…

    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.

  250. Warning Line 6323, Column 297: reference to external entity in attribute value
    …ration=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&trac…

    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;'.

  251. Error Line 6323, Column 297: reference to entity "source" for which no system identifier could be generated
    …ration=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&trac…

    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.

  252. Info Line 6323, Column 290: entity was defined here
    …S=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_li…
  253. Warning Line 6323, Column 301: cannot generate system identifier for general entity "ref"
    …on=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&tracking…

    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.

  254. Error Line 6323, Column 301: general entity "ref" not defined and no default entity
    …on=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&tracking…

    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.

  255. Warning Line 6323, Column 304: reference not terminated by REFC delimiter
    …GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&tracking_id…

    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.

  256. Warning Line 6323, Column 304: reference to external entity in attribute value
    …GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&tracking_id…

    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;'.

  257. Error Line 6323, Column 304: reference to entity "ref" for which no system identifier could be generated
    …GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&tracking_id…

    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.

  258. Info Line 6323, Column 300: entity was defined here
    …ion=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&trackin…
  259. Warning Line 6323, Column 312: cannot generate system identifier for general entity "ad_type"
    …l&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&tracking_id=lawguna…

    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.

  260. Error Line 6323, Column 312: general entity "ad_type" not defined and no default entity
    …l&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&tracking_id=lawguna…

    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.

  261. Warning Line 6323, Column 319: reference not terminated by REFC delimiter
    …tPlace=US&source=ss&ref=ss_til&ad_type=product_link&tracking_id=lawgunandmon-2…

    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.

  262. Warning Line 6323, Column 319: reference to external entity in attribute value
    …tPlace=US&source=ss&ref=ss_til&ad_type=product_link&tracking_id=lawgunandmon-2…

    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;'.

  263. Error Line 6323, Column 319: reference to entity "ad_type" for which no system identifier could be generated
    …tPlace=US&source=ss&ref=ss_til&ad_type=product_link&tracking_id=lawgunandmon-2…

    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.

  264. Info Line 6323, Column 311: entity was defined here
    …ml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&tracking_id=lawgun…
  265. Warning Line 6323, Column 333: cannot generate system identifier for general entity "tracking_id"
    …ce=ss&ref=ss_til&ad_type=product_link&tracking_id=lawgunandmon-20&marketplace=…

    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.

  266. Error Line 6323, Column 333: general entity "tracking_id" not defined and no default entity
    …ce=ss&ref=ss_til&ad_type=product_link&tracking_id=lawgunandmon-20&marketplace=…

    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.

  267. Warning Line 6323, Column 344: reference not terminated by REFC delimiter
    …s_til&ad_type=product_link&tracking_id=lawgunandmon-20&marketplace=amazon&regi…

    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.

  268. Warning Line 6323, Column 344: reference to external entity in attribute value
    …s_til&ad_type=product_link&tracking_id=lawgunandmon-20&marketplace=amazon&regi…

    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;'.

  269. Error Line 6323, Column 344: reference to entity "tracking_id" for which no system identifier could be generated
    …s_til&ad_type=product_link&tracking_id=lawgunandmon-20&marketplace=amazon&regi…

    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. Info Line 6323, Column 332: entity was defined here
    …rce=ss&ref=ss_til&ad_type=product_link&tracking_id=lawgunandmon-20&marketplace…
  271. Warning Line 6323, Column 361: cannot generate system identifier for general entity "marketplace"
    …duct_link&tracking_id=lawgunandmon-20&marketplace=amazon&region=US&placement=B…

    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.

  272. Error Line 6323, Column 361: general entity "marketplace" not defined and no default entity
    …duct_link&tracking_id=lawgunandmon-20&marketplace=amazon&region=US&placement=B…

    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.

  273. Warning Line 6323, Column 372: reference not terminated by REFC delimiter
    …racking_id=lawgunandmon-20&marketplace=amazon&region=US&placement=B00JIV2ZT6&a…

    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.

  274. Warning Line 6323, Column 372: reference to external entity in attribute value
    …racking_id=lawgunandmon-20&marketplace=amazon&region=US&placement=B00JIV2ZT6&a…

    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;'.

  275. Error Line 6323, Column 372: reference to entity "marketplace" for which no system identifier could be generated
    …racking_id=lawgunandmon-20&marketplace=amazon&region=US&placement=B00JIV2ZT6&a…

    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.

  276. Info Line 6323, Column 360: entity was defined here
    …oduct_link&tracking_id=lawgunandmon-20&marketplace=amazon&region=US&placement=…
  277. Warning Line 6323, Column 380: cannot generate system identifier for general entity "region"
    …id=lawgunandmon-20&marketplace=amazon&region=US&placement=B00JIV2ZT6&asins=B00…

    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.

  278. Error Line 6323, Column 380: general entity "region" not defined and no default entity
    …id=lawgunandmon-20&marketplace=amazon&region=US&placement=B00JIV2ZT6&asins=B00…

    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.

  279. Warning Line 6323, Column 386: reference not terminated by REFC delimiter
    …gunandmon-20&marketplace=amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT…

    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.

  280. Warning Line 6323, Column 386: reference to external entity in attribute value
    …gunandmon-20&marketplace=amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT…

    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;'.

  281. Error Line 6323, Column 386: reference to entity "region" for which no system identifier could be generated
    …gunandmon-20&marketplace=amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT…

    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.

  282. Info Line 6323, Column 379: entity was defined here
    …_id=lawgunandmon-20&marketplace=amazon&region=US&placement=B00JIV2ZT6&asins=B0…
  283. Warning Line 6323, Column 390: cannot generate system identifier for general entity "placement"
    …ndmon-20&marketplace=amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&li…

    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.

  284. Error Line 6323, Column 390: general entity "placement" not defined and no default entity
    …ndmon-20&marketplace=amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&li…

    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.

  285. Warning Line 6323, Column 399: reference not terminated by REFC delimiter
    …marketplace=amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOF…

    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.

  286. Warning Line 6323, Column 399: reference to external entity in attribute value
    …marketplace=amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOF…

    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;'.

  287. Error Line 6323, Column 399: reference to entity "placement" for which no system identifier could be generated
    …marketplace=amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOF…

    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.

  288. Info Line 6323, Column 389: entity was defined here
    …andmon-20&marketplace=amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&l…
  289. Warning Line 6323, Column 411: cannot generate system identifier for general entity "asins"
    …amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP…

    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.

  290. Error Line 6323, Column 411: general entity "asins" not defined and no default entity
    …amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP…

    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.

  291. Warning Line 6323, Column 416: reference not terminated by REFC delimiter
    …n&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP&show…

    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.

  292. Warning Line 6323, Column 416: reference to external entity in attribute value
    …n&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP&show…

    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;'.

  293. Error Line 6323, Column 416: reference to entity "asins" for which no system identifier could be generated
    …n&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP&show…

    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.

  294. Info Line 6323, Column 410: entity was defined here
    …=amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TS…
  295. Warning Line 6323, Column 428: cannot generate system identifier for general entity "linkId"
    …placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP&show_border=true…

    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.

  296. Error Line 6323, Column 428: general entity "linkId" not defined and no default entity
    …placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP&show_border=true…

    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.

  297. Warning Line 6323, Column 434: reference not terminated by REFC delimiter
    …ent=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_…

    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.

  298. Warning Line 6323, Column 434: reference to external entity in attribute value
    …ent=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_…

    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;'.

  299. Error Line 6323, Column 434: reference to entity "linkId" for which no system identifier could be generated
    …ent=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_…

    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.

  300. Info Line 6323, Column 427: entity was defined here
    …&placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP&show_border=tru…
  301. Warning Line 6323, Column 452: cannot generate system identifier for general entity "show_border"
    …ns=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_opens_in_new_windo…

    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.

  302. Error Line 6323, Column 452: general entity "show_border" not defined and no default entity
    …ns=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_opens_in_new_windo…

    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.

  303. Warning Line 6323, Column 463: reference not terminated by REFC delimiter
    …T6&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_opens_in_new_window=true"><br…

    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.

  304. Warning Line 6323, Column 463: reference to external entity in attribute value
    …T6&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_opens_in_new_window=true"><br…

    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;'.

  305. Error Line 6323, Column 463: reference to entity "show_border" for which no system identifier could be generated
    …T6&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_opens_in_new_window=true"><br…

    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.

  306. Info Line 6323, Column 451: entity was defined here
    …ins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_opens_in_new_wind…
  307. Warning Line 6323, Column 469: cannot generate system identifier for general entity "link_opens_in_new_window"
    …&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_opens_in_new_window=true"><br />

    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.

  308. Error Line 6323, Column 469: general entity "link_opens_in_new_window" not defined and no default entity
    …&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_opens_in_new_window=true"><br />

    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.

  309. Warning Line 6323, Column 493: reference not terminated by REFC delimiter
    …&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_opens_in_new_window=true"><br />

    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.

  310. Warning Line 6323, Column 493: reference to external entity in attribute value
    …&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_opens_in_new_window=true"><br />

    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;'.

  311. Error Line 6323, Column 493: reference to entity "link_opens_in_new_window" for which no system identifier could be generated
    …&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_opens_in_new_window=true"><br />

    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.

  312. Info Line 6323, Column 468: entity was defined here
    …&linkId=BKOFIGNR6MGH3TSP&show_border=true&link_opens_in_new_window=true"><br />
  313. Warning Line 6325, Column 67: cannot generate system identifier for general entity "bc1"
    …a.amazon-adsystem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&l…

    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.

  314. Error Line 6325, Column 67: general entity "bc1" not defined and no default entity
    …a.amazon-adsystem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&l…

    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.

  315. Warning Line 6325, Column 70: reference not terminated by REFC delimiter
    …mazon-adsystem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=…

    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.

  316. Warning Line 6325, Column 70: reference to external entity in attribute value
    …mazon-adsystem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=…

    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;'.

  317. Error Line 6325, Column 70: reference to entity "bc1" for which no system identifier could be generated
    …mazon-adsystem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=…

    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.

  318. Info Line 6325, Column 66: entity was defined here
    …na.amazon-adsystem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&…
  319. Warning Line 6325, Column 78: cannot generate system identifier for general entity "IS2"
    …system.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t…

    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.

  320. Error Line 6325, Column 78: general entity "IS2" not defined and no default entity
    …system.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t…

    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.

  321. Warning Line 6325, Column 81: reference not terminated by REFC delimiter
    …tem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=la…

    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.

  322. Warning Line 6325, Column 81: reference to external entity in attribute value
    …tem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=la…

    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;'.

  323. Error Line 6325, Column 81: reference to entity "IS2" for which no system identifier could be generated
    …tem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=la…

    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.

  324. Info Line 6325, Column 77: entity was defined here
    …dsystem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&…
  325. Warning Line 6325, Column 87: reference not terminated by REFC delimiter
    …m/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunan…

    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.

  326. Warning Line 6325, Column 87: reference to external entity in attribute value
    …m/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunan…

    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;'.

  327. Error Line 6325, Column 87: reference to entity "bg1" for which no system identifier could be generated
    …m/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunan…

    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.

  328. Info Line 6202, Column 206: entity was defined here
    …66011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" margi…
  329. Warning Line 6325, Column 98: reference not terminated by REFC delimiter
    …_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1…

    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.

  330. Warning Line 6325, Column 98: reference to external entity in attribute value
    …_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1…

    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;'.

  331. Error Line 6325, Column 98: reference to entity "fc1" for which no system identifier could be generated
    …_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1…

    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.

  332. Info Line 6202, Column 173: entity was defined here
    …=14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FF…
  333. Warning Line 6325, Column 109: reference not terminated by REFC delimiter
    …000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&…

    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 6325, Column 109: reference to external entity in attribute value
    …000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&…

    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 6325, Column 109: reference to entity "lc1" for which no system identifier could be generated
    …000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&…

    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 6202, Column 195: entity was defined here
    …rowse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidt…
  337. Warning Line 6325, Column 117: cannot generate system identifier for general entity "t"
    …S2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon…

    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.

  338. Error Line 6325, Column 117: general entity "t" not defined and no default entity
    …S2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon…

    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.

  339. Warning Line 6325, Column 118: reference not terminated by REFC delimiter
    …2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&…

    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 6325, Column 118: reference to external entity in attribute value
    …2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&…

    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 6325, Column 118: reference to entity "t" for which no system identifier could be generated
    …2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&…

    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 6325, Column 116: entity was defined here
    …IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazo…
  343. Warning Line 6325, Column 136: reference not terminated by REFC delimiter
    …=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&a…

    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.

  344. Warning Line 6325, Column 136: reference to external entity in attribute value
    …=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&a…

    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;'.

  345. Error Line 6325, Column 136: reference to entity "o" for which no system identifier could be generated
    …=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&a…

    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.

  346. Info Line 6202, Column 129: entity was defined here
    …/rcm.amazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=337786…
  347. Warning Line 6325, Column 140: reference not terminated by REFC delimiter
    …000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins…

    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.

  348. Warning Line 6325, Column 140: reference to external entity in attribute value
    …000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins…

    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;'.

  349. Error Line 6325, Column 140: reference to entity "p" for which no system identifier could be generated
    …000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins…

    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.

  350. Info Line 6202, Column 133: entity was defined here
    ….amazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011…
  351. Warning Line 6325, Column 144: reference not terminated by REFC delimiter
    …lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=081…

    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 6325, Column 144: reference to external entity in attribute value
    …lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=081…

    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 6325, Column 144: reference to entity "l" for which no system identifier could be generated
    …lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=081…

    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 6202, Column 138: entity was defined here
    …on.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=…
  355. Warning Line 6325, Column 149: cannot generate system identifier for general entity "m"
    …000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=08131449…

    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.

  356. Error Line 6325, Column 149: general entity "m" not defined and no default entity
    …000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=08131449…

    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.

  357. Warning Line 6325, Column 150: reference not terminated by REFC delimiter
    …00FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=081314495…

    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 6325, Column 150: reference to external entity in attribute value
    …00FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=081314495…

    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 6325, Column 150: reference to entity "m" for which no system identifier could be generated
    …00FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=081314495…

    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 6325, Column 148: entity was defined here
    …0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=0813144…
  361. Warning Line 6325, Column 159: reference not terminated by REFC delimiter
    …wgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=0813144957" style=…

    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.

  362. Warning Line 6325, Column 159: reference to external entity in attribute value
    …wgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=0813144957" style=…

    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;'.

  363. Error Line 6325, Column 159: reference to entity "f" for which no system identifier could be generated
    …wgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=0813144957" style=…

    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.

  364. Info Line 6202, Column 217: entity was defined here
    …00000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" marginheight="0"…
  365. Warning Line 6325, Column 167: reference not terminated by REFC delimiter
    …on-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=0813144957" style="width:1…

    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.

  366. Warning Line 6325, Column 167: reference to external entity in attribute value
    …on-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=0813144957" style="width:1…

    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;'.

  367. Error Line 6325, Column 167: reference to entity "ref" for which no system identifier could be generated
    …on-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=0813144957" style="width:1…

    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.

  368. Info Line 6323, Column 300: entity was defined here
    …ion=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&trackin…
  369. Warning Line 6325, Column 180: reference not terminated by REFC delimiter
    …&l=as4&m=amazon&f=ifr&ref=ss_til&asins=0813144957" style="width:120px;height:2…

    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 6325, Column 180: reference to external entity in attribute value
    …&l=as4&m=amazon&f=ifr&ref=ss_til&asins=0813144957" style="width:120px;height:2…

    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 6325, Column 180: reference to entity "asins" for which no system identifier could be generated
    …&l=as4&m=amazon&f=ifr&ref=ss_til&asins=0813144957" style="width:120px;height:2…

    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 6323, Column 410: entity was defined here
    …=amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TS…
  373. Warning Line 6326, Column 70: reference not terminated by REFC delimiter
    …mazon-adsystem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=…

    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.

  374. Warning Line 6326, Column 70: reference to external entity in attribute value
    …mazon-adsystem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=…

    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;'.

  375. Error Line 6326, Column 70: reference to entity "bc1" for which no system identifier could be generated
    …mazon-adsystem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=…

    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.

  376. Info Line 6325, Column 66: entity was defined here
    …na.amazon-adsystem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&…
  377. Warning Line 6326, Column 81: reference not terminated by REFC delimiter
    …tem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=la…

    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.

  378. Warning Line 6326, Column 81: reference to external entity in attribute value
    …tem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=la…

    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;'.

  379. Error Line 6326, Column 81: reference to entity "IS2" for which no system identifier could be generated
    …tem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=la…

    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.

  380. Info Line 6325, Column 77: entity was defined here
    …dsystem.com/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&…
  381. Warning Line 6326, Column 87: reference not terminated by REFC delimiter
    …m/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunan…

    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 6326, Column 87: reference to external entity in attribute value
    …m/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunan…

    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 6326, Column 87: reference to entity "bg1" for which no system identifier could be generated
    …m/e/cm?lt1=_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunan…

    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 6202, Column 206: entity was defined here
    …66011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" margi…
  385. Warning Line 6326, Column 98: reference not terminated by REFC delimiter
    …_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1…

    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.

  386. Warning Line 6326, Column 98: reference to external entity in attribute value
    …_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1…

    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;'.

  387. Error Line 6326, Column 98: reference to entity "fc1" for which no system identifier could be generated
    …_blank&bc1=000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1…

    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.

  388. Info Line 6202, Column 173: entity was defined here
    …=14&l=bn1&mode=books&browse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FF…
  389. Warning Line 6326, Column 109: reference not terminated by REFC delimiter
    …000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&…

    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.

  390. Warning Line 6326, Column 109: reference to external entity in attribute value
    …000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&…

    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;'.

  391. Error Line 6326, Column 109: reference to entity "lc1" for which no system identifier could be generated
    …000000&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&…

    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.

  392. Info Line 6202, Column 195: entity was defined here
    …rowse=3377866011&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidt…
  393. Warning Line 6326, Column 118: reference not terminated by REFC delimiter
    …2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&…

    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.

  394. Warning Line 6326, Column 118: reference to external entity in attribute value
    …2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&…

    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;'.

  395. Error Line 6326, Column 118: reference to entity "t" for which no system identifier could be generated
    …2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&…

    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.

  396. Info Line 6325, Column 116: entity was defined here
    …IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazo…
  397. Warning Line 6326, Column 136: reference not terminated by REFC delimiter
    …=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&a…

    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.

  398. Warning Line 6326, Column 136: reference to external entity in attribute value
    …=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&a…

    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;'.

  399. Error Line 6326, Column 136: reference to entity "o" for which no system identifier could be generated
    …=000000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&a…

    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.

  400. Info Line 6202, Column 129: entity was defined here
    …/rcm.amazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=337786…
  401. Warning Line 6326, Column 140: reference not terminated by REFC delimiter
    …000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins…

    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.

  402. Warning Line 6326, Column 140: reference to external entity in attribute value
    …000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins…

    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;'.

  403. Error Line 6326, Column 140: reference to entity "p" for which no system identifier could be generated
    …000&lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins…

    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.

  404. Info Line 6202, Column 133: entity was defined here
    ….amazon.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011…
  405. Warning Line 6326, Column 144: reference not terminated by REFC delimiter
    …lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=148…

    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 6326, Column 144: reference to external entity in attribute value
    …lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=148…

    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 6326, Column 144: reference to entity "l" for which no system identifier could be generated
    …lc1=0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=148…

    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 6202, Column 138: entity was defined here
    …on.com/e/cm?t=lawgunandmon-20&o=1&p=14&l=bn1&mode=books&browse=3377866011&fc1=…
  409. Warning Line 6326, Column 150: reference not terminated by REFC delimiter
    …00FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=148016368…

    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.

  410. Warning Line 6326, Column 150: reference to external entity in attribute value
    …00FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=148016368…

    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;'.

  411. Error Line 6326, Column 150: reference to entity "m" for which no system identifier could be generated
    …00FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=148016368…

    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.

  412. Info Line 6325, Column 148: entity was defined here
    …0000FF&t=lawgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=0813144…
  413. Warning Line 6326, Column 159: reference not terminated by REFC delimiter
    …wgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=1480163686" style=…

    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.

  414. Warning Line 6326, Column 159: reference to external entity in attribute value
    …wgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=1480163686" style=…

    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;'.

  415. Error Line 6326, Column 159: reference to entity "f" for which no system identifier could be generated
    …wgunandmon-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=1480163686" style=…

    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.

  416. Info Line 6202, Column 217: entity was defined here
    …00000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr" marginwidth="0" marginheight="0"…
  417. Warning Line 6326, Column 167: reference not terminated by REFC delimiter
    …on-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=1480163686" style="width:1…

    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.

  418. Warning Line 6326, Column 167: reference to external entity in attribute value
    …on-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=1480163686" style="width:1…

    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;'.

  419. Error Line 6326, Column 167: reference to entity "ref" for which no system identifier could be generated
    …on-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=1480163686" style="width:1…

    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.

  420. Info Line 6323, Column 300: entity was defined here
    …ion=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_type=product_link&trackin…
  421. Warning Line 6326, Column 180: reference not terminated by REFC delimiter
    …&l=as4&m=amazon&f=ifr&ref=ss_til&asins=1480163686" style="width:120px;height:2…

    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.

  422. Warning Line 6326, Column 180: reference to external entity in attribute value
    …&l=as4&m=amazon&f=ifr&ref=ss_til&asins=1480163686" style="width:120px;height:2…

    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;'.

  423. Error Line 6326, Column 180: reference to entity "asins" for which no system identifier could be generated
    …&l=as4&m=amazon&f=ifr&ref=ss_til&asins=1480163686" style="width:120px;height:2…

    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.

  424. Info Line 6323, Column 410: entity was defined here
    …=amazon&region=US&placement=B00JIV2ZT6&asins=B00JIV2ZT6&linkId=BKOFIGNR6MGH3TS…
  425. Error Line 6327, Column 20: there is no attribute "classid"
    <p><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http:…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  426. Error Line 6327, Column 74: there is no attribute "codebase"
    …AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/get/fl…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  427. Error Line 6327, Column 148: there is no attribute "id"
    …t/flashplayer/current/swflash.cab" id="Player_4f5e2755-3436-4571-9358-59968bdc…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  428. Error Line 6327, Column 201: there is no attribute "WIDTH"
    …5-3436-4571-9358-59968bdcac46"  WIDTH="160px" HEIGHT="600px"> <PARAM NAME="mov…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  429. Error Line 6327, Column 216: there is no attribute "HEIGHT"
    …8-59968bdcac46"  WIDTH="160px" HEIGHT="600px"> <PARAM NAME="movie" VALUE="http…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  430. Error Line 6327, Column 223: element "OBJECT" undefined
    …bdcac46"  WIDTH="160px" HEIGHT="600px"> <PARAM NAME="movie" VALUE="http://ws.a…

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  431. Error Line 6327, Column 237: there is no attribute "NAME"
    …H="160px" HEIGHT="600px"> <PARAM NAME="movie" VALUE="http://ws.amazon.com/widg…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  432. Error Line 6327, Column 251: there is no attribute "VALUE"
    …HT="600px"> <PARAM NAME="movie" VALUE="http://ws.amazon.com/widgets/q?rt=tf_cw…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  433. Warning Line 6327, Column 292: cannot generate system identifier for general entity "ServiceVersion"
    …tp://ws.amazon.com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&I…

    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.

  434. Error Line 6327, Column 292: general entity "ServiceVersion" not defined and no default entity
    …tp://ws.amazon.com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&I…

    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.

  435. Warning Line 6327, Column 306: reference not terminated by REFC delimiter
    ….com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2F…

    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.

  436. Warning Line 6327, Column 306: reference to external entity in attribute value
    ….com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2F…

    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;'.

  437. Error Line 6327, Column 306: reference to entity "ServiceVersion" for which no system identifier could be generated
    ….com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2F…

    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.

  438. Info Line 6327, Column 291: entity was defined here
    …ttp://ws.amazon.com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&…
  439. Warning Line 6327, Column 327: reference not terminated by REFC delimiter
    …cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%…

    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.

  440. Warning Line 6327, Column 327: reference to external entity in attribute value
    …cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%…

    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;'.

  441. Error Line 6327, Column 327: reference to entity "MarketPlace" for which no system identifier could be generated
    …cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%…

    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.

  442. Info Line 6323, Column 275: entity was defined here
    …n=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_…
  443. Warning Line 6327, Column 331: cannot generate system identifier for general entity "ID"
    …erviceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F80…

    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.

  444. Error Line 6327, Column 331: general entity "ID" not defined and no default entity
    …erviceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F80…

    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.

  445. Warning Line 6327, Column 333: reference not terminated by REFC delimiter
    …viceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F8010…

    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 6327, Column 333: reference to external entity in attribute value
    …viceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F8010…

    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 6327, Column 333: reference to entity "ID" for which no system identifier could be generated
    …viceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F8010…

    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 6327, Column 330: entity was defined here
    …ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F8…
  449. Warning Line 6327, Column 422: reference not terminated by REFC delimiter
    …-3436-4571-9358-59968bdcac46&Operation=GetDisplayTemplate"><PARAM NAME="qualit…

    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.

  450. Warning Line 6327, Column 422: reference to external entity in attribute value
    …-3436-4571-9358-59968bdcac46&Operation=GetDisplayTemplate"><PARAM NAME="qualit…

    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;'.

  451. Error Line 6327, Column 422: reference to entity "Operation" for which no system identifier could be generated
    …-3436-4571-9358-59968bdcac46&Operation=GetDisplayTemplate"><PARAM NAME="qualit…

    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.

  452. Info Line 6323, Column 255: entity was defined here
    …gets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&sour…
  453. Error Line 6327, Column 442: element "PARAM" undefined
    …8bdcac46&Operation=GetDisplayTemplate"><PARAM NAME="quality" VALUE="high"><PAR…

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  454. Error Line 6327, Column 477: element "PARAM" undefined
    …te"><PARAM NAME="quality" VALUE="high"><PARAM NAME="bgcolor" VALUE="#FFFFFF"><…

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  455. Error Line 6327, Column 515: element "PARAM" undefined
    …><PARAM NAME="bgcolor" VALUE="#FFFFFF"><PARAM NAME="allowscriptaccess" VALUE="…

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  456. Error Line 6327, Column 562: element "PARAM" undefined
    …AME="allowscriptaccess" VALUE="always"><embed src="http://ws.amazon.com/widget…

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  457. Error Line 6327, Column 574: there is no attribute "src"
    …riptaccess" VALUE="always"><embed src="http://ws.amazon.com/widgets/q?rt=tf_cw…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  458. Warning Line 6327, Column 629: reference not terminated by REFC delimiter
    ….com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2F…

    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.

  459. Warning Line 6327, Column 629: reference to external entity in attribute value
    ….com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2F…

    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;'.

  460. Error Line 6327, Column 629: reference to entity "ServiceVersion" for which no system identifier could be generated
    ….com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2F…

    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.

  461. Info Line 6327, Column 291: entity was defined here
    …ttp://ws.amazon.com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&…
  462. Warning Line 6327, Column 650: reference not terminated by REFC delimiter
    …cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%…

    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.

  463. Warning Line 6327, Column 650: reference to external entity in attribute value
    …cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%…

    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;'.

  464. Error Line 6327, Column 650: reference to entity "MarketPlace" for which no system identifier could be generated
    …cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%…

    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.

  465. Info Line 6323, Column 275: entity was defined here
    …n=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_…
  466. Warning Line 6327, Column 656: reference not terminated by REFC delimiter
    …viceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F8010…

    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 6327, Column 656: reference to external entity in attribute value
    …viceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F8010…

    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 6327, Column 656: reference to entity "ID" for which no system identifier could be generated
    …viceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F8010…

    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 6327, Column 330: entity was defined here
    …ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F8…
  470. Warning Line 6327, Column 745: reference not terminated by REFC delimiter
    …-3436-4571-9358-59968bdcac46&Operation=GetDisplayTemplate" id="Player_4f5e2755…

    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.

  471. Warning Line 6327, Column 745: reference to external entity in attribute value
    …-3436-4571-9358-59968bdcac46&Operation=GetDisplayTemplate" id="Player_4f5e2755…

    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;'.

  472. Error Line 6327, Column 745: reference to entity "Operation" for which no system identifier could be generated
    …-3436-4571-9358-59968bdcac46&Operation=GetDisplayTemplate" id="Player_4f5e2755…

    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.

  473. Info Line 6323, Column 255: entity was defined here
    …gets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&sour…
  474. Error Line 6327, Column 769: there is no attribute "id"
    …ac46&Operation=GetDisplayTemplate" id="Player_4f5e2755-3436-4571-9358-59968bdc…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  475. Error Line 6327, Column 823: there is no attribute "quality"
    …-3436-4571-9358-59968bdcac46" quality="high" bgcolor="#ffffff" name="Player_4f…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  476. Error Line 6327, Column 838: there is no attribute "bgcolor"
    …-59968bdcac46" quality="high" bgcolor="#ffffff" name="Player_4f5e2755-3436-457…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  477. Error Line 6327, Column 853: there is no attribute "name"
    …quality="high" bgcolor="#ffffff" name="Player_4f5e2755-3436-4571-9358-59968bdc…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  478. Error Line 6327, Column 917: there is no attribute "allowscriptaccess"
    …-9358-59968bdcac46" allowscriptaccess="always"  type="application/x-shockwave-…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  479. Error Line 6327, Column 932: there is no attribute "type"
    …c46" allowscriptaccess="always"  type="application/x-shockwave-flash" align="m…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  480. Error Line 6327, Column 970: there is no attribute "align"
    …"application/x-shockwave-flash" align="middle" height="600px" width="160px"></…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  481. Error Line 6327, Column 986: there is no attribute "height"
    …hockwave-flash" align="middle" height="600px" width="160px"></embed></OBJECT> …

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  482. Error Line 6327, Column 1000: there is no attribute "width"
    …" align="middle" height="600px" width="160px"></embed></OBJECT> <NOSCRIPT><A H…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  483. Error Line 6327, Column 1007: element "embed" undefined
    …="middle" height="600px" width="160px"></embed></OBJECT> <NOSCRIPT><A HREF="ht…

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  484. Error Line 6327, Column 1024: end tag for "PARAM" omitted, but OMITTAG NO was specified
    …"600px" width="160px"></embed></OBJECT> <NOSCRIPT><A HREF="http://ws.amazon.co…

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

  485. Info Line 6327, Column 516: start tag was here
    …<PARAM NAME="bgcolor" VALUE="#FFFFFF"><PARAM NAME="allowscriptaccess" VALUE="a…
  486. Error Line 6327, Column 1024: end tag for "PARAM" omitted, but OMITTAG NO was specified
    …"600px" width="160px"></embed></OBJECT> <NOSCRIPT><A HREF="http://ws.amazon.co…

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

  487. Info Line 6327, Column 478: start tag was here
    …e"><PARAM NAME="quality" VALUE="high"><PARAM NAME="bgcolor" VALUE="#FFFFFF"><P…
  488. Error Line 6327, Column 1024: end tag for "PARAM" omitted, but OMITTAG NO was specified
    …"600px" width="160px"></embed></OBJECT> <NOSCRIPT><A HREF="http://ws.amazon.co…

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

  489. Info Line 6327, Column 443: start tag was here
    …bdcac46&Operation=GetDisplayTemplate"><PARAM NAME="quality" VALUE="high"><PARA…
  490. Error Line 6327, Column 1024: end tag for "PARAM" omitted, but OMITTAG NO was specified
    …"600px" width="160px"></embed></OBJECT> <NOSCRIPT><A HREF="http://ws.amazon.co…

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

  491. Info Line 6327, Column 225: start tag was here
    …cac46"  WIDTH="160px" HEIGHT="600px"> <PARAM NAME="movie" VALUE="http://ws.ama…
  492. Error Line 6327, Column 1035: element "NOSCRIPT" undefined
    …th="160px"></embed></OBJECT> <NOSCRIPT><A HREF="http://ws.amazon.com/widgets/q…

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  493. Error Line 6327, Column 1044: there is no attribute "HREF"
    …"></embed></OBJECT> <NOSCRIPT><A HREF="http://ws.amazon.com/widgets/q?rt=tf_cw…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  494. Warning Line 6327, Column 1099: reference not terminated by REFC delimiter
    ….com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2F…

    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.

  495. Warning Line 6327, Column 1099: reference to external entity in attribute value
    ….com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2F…

    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;'.

  496. Error Line 6327, Column 1099: reference to entity "ServiceVersion" for which no system identifier could be generated
    ….com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2F…

    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.

  497. Info Line 6327, Column 291: entity was defined here
    …ttp://ws.amazon.com/widgets/q?rt=tf_cw&ServiceVersion=20070822&MarketPlace=US&…
  498. Warning Line 6327, Column 1120: reference not terminated by REFC delimiter
    …cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%…

    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. Warning Line 6327, Column 1120: reference to external entity in attribute value
    …cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%…

    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;'.

  500. Error Line 6327, Column 1120: reference to entity "MarketPlace" for which no system identifier could be generated
    …cw&ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%…

    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.

  501. Info Line 6323, Column 275: entity was defined here
    …n=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=ss_til&ad_…
  502. Warning Line 6327, Column 1126: reference not terminated by REFC delimiter
    …viceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F8010…

    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 6327, Column 1126: reference to external entity in attribute value
    …viceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F8010…

    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 6327, Column 1126: reference to entity "ID" for which no system identifier could be generated
    …viceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F8010…

    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 6327, Column 330: entity was defined here
    …ServiceVersion=20070822&MarketPlace=US&ID=V20070822%2FUS%2Flawgunandmon-20%2F8…
  506. Warning Line 6327, Column 1215: reference not terminated by REFC delimiter
    …-3436-4571-9358-59968bdcac46&Operation=NoScript">Amazon.com Widgets</A></NOSCR…

    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.

  507. Warning Line 6327, Column 1215: reference to external entity in attribute value
    …-3436-4571-9358-59968bdcac46&Operation=NoScript">Amazon.com Widgets</A></NOSCR…

    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;'.

  508. Error Line 6327, Column 1215: reference to entity "Operation" for which no system identifier could be generated
    …-3436-4571-9358-59968bdcac46&Operation=NoScript">Amazon.com Widgets</A></NOSCR…

    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.

  509. Info Line 6323, Column 255: entity was defined here
    …gets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&sour…
  510. Error Line 6327, Column 1225: element "A" undefined
    …571-9358-59968bdcac46&Operation=NoScript">Amazon.com Widgets</A></NOSCRIPT></p>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  511. Warning Line 6332, Column 56: cannot generate system identifier for general entity "z"
    …://www.lijit.com/delivery/fp?u=farlio&z=58835&n=1" type="text/javascript"></sc…

    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.

  512. Error Line 6332, Column 56: general entity "z" not defined and no default entity
    …://www.lijit.com/delivery/fp?u=farlio&z=58835&n=1" type="text/javascript"></sc…

    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.

  513. Warning Line 6332, Column 57: reference not terminated by REFC delimiter
    …//www.lijit.com/delivery/fp?u=farlio&z=58835&n=1" type="text/javascript"></scr…

    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.

  514. Warning Line 6332, Column 57: reference to external entity in attribute value
    …//www.lijit.com/delivery/fp?u=farlio&z=58835&n=1" type="text/javascript"></scr…

    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;'.

  515. Error Line 6332, Column 57: reference to entity "z" for which no system identifier could be generated
    …//www.lijit.com/delivery/fp?u=farlio&z=58835&n=1" type="text/javascript"></scr…

    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.

  516. Info Line 6332, Column 55: entity was defined here
    …p://www.lijit.com/delivery/fp?u=farlio&z=58835&n=1" type="text/javascript"></s…
  517. Warning Line 6332, Column 64: cannot generate system identifier for general entity "n"
    …ijit.com/delivery/fp?u=farlio&z=58835&n=1" type="text/javascript"></script></d…

    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.

  518. Error Line 6332, Column 64: general entity "n" not defined and no default entity
    …ijit.com/delivery/fp?u=farlio&z=58835&n=1" type="text/javascript"></script></d…

    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.

  519. Warning Line 6332, Column 65: reference not terminated by REFC delimiter
    …jit.com/delivery/fp?u=farlio&z=58835&n=1" type="text/javascript"></script></di…

    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.

  520. Warning Line 6332, Column 65: reference to external entity in attribute value
    …jit.com/delivery/fp?u=farlio&z=58835&n=1" type="text/javascript"></script></di…

    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;'.

  521. Error Line 6332, Column 65: reference to entity "n" for which no system identifier could be generated
    …jit.com/delivery/fp?u=farlio&z=58835&n=1" type="text/javascript"></script></di…

    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.

  522. Info Line 6332, Column 63: entity was defined here
    …lijit.com/delivery/fp?u=farlio&z=58835&n=1" type="text/javascript"></script></…
  523. Error Line 6334, Column 174: there is no attribute "affiliate"
    …s1-1001" class="cpi cpi-s1" affiliate="" tracking="lefarkins" color="" source=…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  524. Error Line 6334, Column 186: there is no attribute "tracking"
    …ss="cpi cpi-s1" affiliate="" tracking="lefarkins" color="" source="shop:lefark…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  525. Error Line 6334, Column 204: there is no attribute "color"
    …filiate="" tracking="lefarkins" color="" source="shop:lefarkins" width="160" h…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  526. Error Line 6334, Column 214: there is no attribute "source"
    … tracking="lefarkins" color="" source="shop:lefarkins" width="160" height="200…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  527. Error Line 6334, Column 237: there is no attribute "width"
    …olor="" source="shop:lefarkins" width="160" height="200">Make&nbsp;<a href="ht…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  528. Error Line 6334, Column 250: there is no attribute "height"
    …e="shop:lefarkins" width="160" height="200">Make&nbsp;<a href="http://www.cafe…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  529. Error Line 6340, Column 196: required attribute "alt" not specified
    …tent/uploads/2012/09/oldfashionedrevisedandsharpened-e1348603402357.jpg"></div>

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

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  530. Error Line 6340, Column 202: end tag for "img" omitted, but OMITTAG NO was specified
    …tent/uploads/2012/09/oldfashionedrevisedandsharpened-e1348603402357.jpg"></div>

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

  531. Info Line 6340, Column 72: start tag was here
    …dget_text">			<div class="textwidget"><img src="http://www.lawyersgunsmoneyblo…
  532. Error Line 6471, Column 124: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    …an></h3>			<div class="textwidget"><li><A href="http://delong.typepad.com/">Br…

    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>").

  533. Error Line 6471, Column 133: there is no attribute "href"
    …		<div class="textwidget"><li><A href="http://delong.typepad.com/">Brad Delong…

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

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  534. Error Line 6471, Column 161: element "A" undefined
    …lass="textwidget"><li><A href="http://delong.typepad.com/">Brad Delong</A></li>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  535. Error Line 6472, Column 4: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    <li><A href="http://www.crookedtimber.org/">Crooked Timber</A></li>

    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>").

  536. Error Line 6472, Column 44: element "A" undefined
    <li><A href="http://www.crookedtimber.org/">Crooked Timber</A></li>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  537. Error Line 6473, Column 4: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    <li><A href="http://dailykos.com/">Daily Kos</A></li>

    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>").

  538. Error Line 6473, Column 35: element "A" undefined
    <li><A href="http://dailykos.com/">Daily Kos</A></li>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  539. Error Line 6474, Column 4: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    <li><A href="http://www.wired.com/dangerroom/">Danger Room</A></li>

    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>").

  540. Error Line 6474, Column 47: element "A" undefined
    <li><A href="http://www.wired.com/dangerroom/">Danger Room</A></li>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  541. Error Line 6475, Column 4: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    <li><A href="http://www.eschatonblog.com/">Eschaton</A></li>

    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>").

  542. Error Line 6475, Column 43: element "A" undefined
    <li><A href="http://www.eschatonblog.com/">Eschaton</A></li>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  543. Error Line 6476, Column 4: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    <li><A href="http://voices.washingtonpost.com/ezra-klein/">Ezra Klein</A></li>

    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>").

  544. Error Line 6476, Column 59: element "A" undefined
    <li><A href="http://voices.washingtonpost.com/ezra-klein/">Ezra Klein</A></li>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  545. Error Line 6477, Column 4: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    <li><A href="http://feministe.us/blog/">Feministe</A></li>

    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>").

  546. Error Line 6477, Column 40: element "A" undefined
    <li><A href="http://feministe.us/blog/">Feministe</A></li>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  547. Error Line 6478, Column 4: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    <li><A href="http://talkingpointsmemo.com/">Talking Points Memo</A></li>

    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>").

  548. Error Line 6478, Column 44: element "A" undefined
    <li><A href="http://talkingpointsmemo.com/">Talking Points Memo</A></li>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  549. Error Line 6479, Column 4: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    <li><A href="http://feministing.com/">Feministing</A></li>

    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>").

  550. Error Line 6479, Column 38: element "A" undefined
    <li><A href="http://feministing.com/">Feministing</A></li>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  551. Error Line 6480, Column 4: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    <li><A href="http://www.salon.com/opinion/greenwald/">Glenn Greenwald</A></li>

    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>").

  552. Error Line 6480, Column 54: element "A" undefined
    <li><A href="http://www.salon.com/opinion/greenwald/">Glenn Greenwald</A></li>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  553. Error Line 6481, Column 4: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    <li><A href="http://juancole.com/">Juan Cole</A></li>

    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>").

  554. Error Line 6481, Column 35: element "A" undefined
    <li><A href="http://juancole.com/">Juan Cole</A></li>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  555. Error Line 6482, Column 4: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    <li><A href="http://www.themonkeycage.org/">Monkey Cage</A></li>	

    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>").

  556. Error Line 6482, Column 44: element "A" undefined
    <li><A href="http://www.themonkeycage.org/">Monkey Cage</A></li>	

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  557. Error Line 6487, Column 203: required attribute "alt" not specified
    …prose"><img src="http://www.blogads.com/advertise/the_liberal_prose/logo" ></a>

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

    Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.

  558. Error Line 6487, Column 207: end tag for "img" omitted, but OMITTAG NO was specified
    …prose"><img src="http://www.blogads.com/advertise/the_liberal_prose/logo" ></a>

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

  559. Info Line 6487, Column 136: start tag was here
    …gads.com/advertise/the_liberal_prose"><img src="http://www.blogads.com/adverti…
  560. Error Line 6488, Column 5: end tag for "p" omitted, but OMITTAG NO was specified
    </ul>

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

  561. Info Line 6487, Column 72: start tag was here
    …dget_text">			<div class="textwidget"><p><a href="http://web.blogads.com/adver…
  562. Error Line 6488, Column 5: end tag for "div" omitted, but OMITTAG NO was specified
    </ul>

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

  563. Info Line 6487, Column 48: start tag was here
    …ext-21" class="widget widget_text">			<div class="textwidget"><p><a href="http…
  564. Error Line 6488, Column 5: end tag for "li" omitted, but OMITTAG NO was specified
    </ul>

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

  565. Info Line 6487, Column 1: start tag was here
    <li id="text-21" class="widget widget_text">			<div class="textwidget"><p><a hr…
  566. Error Line 6490, Column 7: end tag for element "li" which is not open
    		</li>

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

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  567. Error Line 6492, Column 9: end tag for element "ul" which is not open
    				</ul>

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

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  568. Error Line 6501, Column 10: end tag for "ul" which is not finished
    					</ul>

    Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

    Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

  569. Error Line 6507, Column 10: end tag for "ul" which is not finished
    					</ul>

    Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

    Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

  570. Error Line 6535, Column 6: end tag for element "div" which is not open
    </div>

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

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

↑ Top