Stupid bug fix on the HTML parser:
- HTMLparser.c: Doohhh, attribute name parsing was still case
  sensitive ! Fixed this ...
- result/HTML/* : updated the tests results accordingly
Daniel
diff --git a/ChangeLog b/ChangeLog
index 655832b..c9b3486 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Oct  3 11:28:52 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
+
+	* HTMLparser.c: Doohhh, attribute name parsing was still case
+	  sensitive ! Fixed this ...
+	* result/HTML/* : updated the tests results accordingly
+
 Mon Oct  2 23:47:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
 
 	* xpath.[ch] debugXML.c testXPath.c: fixed the XPath evaluation
diff --git a/HTMLparser.c b/HTMLparser.c
index cfd0711..acb13b4 100644
--- a/HTMLparser.c
+++ b/HTMLparser.c
@@ -142,10 +142,6 @@
 
 #define SKIP_BLANKS htmlSkipBlankChars(ctxt);
 
-#if 0
-#define CUR ((int) (*ctxt->input->cur))
-#define NEXT htmlNextChar(ctxt);
-#else
 /* Inported from XML */
 
 /* #define CUR (ctxt->token ? ctxt->token : (int) (*ctxt->input->cur)) */
@@ -175,7 +171,6 @@
 #define COPY_BUF(l,b,i,v)						\
     if (l == 1) b[i++] = (xmlChar) v;					\
     else i += xmlCopyChar(l,&b[i],v);
-#endif
 
 /**
  * htmlCurrentChar:
@@ -1858,27 +1853,6 @@
 
 xmlChar *
 htmlParseHTMLAttribute(htmlParserCtxtPtr ctxt, const xmlChar stop) {
-#if 0
-    xmlChar buf[HTML_MAX_NAMELEN];
-    int len = 0;
-
-    GROW;
-    while ((CUR != 0) && (CUR != stop) && (CUR != '>')) {
-	if ((stop == 0) && (IS_BLANK(CUR))) break;
-	buf[len++] = CUR;
-	NEXT;
-	if (len >= HTML_MAX_NAMELEN) {
-	    fprintf(stderr, 
-	       "htmlParseHTMLAttribute: reached HTML_MAX_NAMELEN limit\n");
-	    while ((!IS_BLANK(CUR)) && (CUR != '<') &&
-		   (CUR != '>') &&
-		   (CUR != '\'') && (CUR != '"'))
-		 NEXT;
-	    break;
-	}
-    }
-    return(xmlStrndup(buf, len));
-#else    
     xmlChar *buffer = NULL;
     int buffer_size = 0;
     xmlChar *out = NULL;
@@ -1998,7 +1972,6 @@
     }
     *out++ = 0;
     return(buffer);
-#endif
 }
 
 /**
@@ -2620,7 +2593,7 @@
     xmlChar *name, *val = NULL;
 
     *value = NULL;
-    name = htmlParseName(ctxt);
+    name = htmlParseHTMLName(ctxt);
     if (name == NULL) {
 	if ((ctxt->sax != NULL) && (ctxt->sax->error != NULL))
 	    ctxt->sax->error(ctxt->userData, "error parsing attribute name\n");
diff --git a/result/HTML/doc2.htm b/result/HTML/doc2.htm
index 07fcc3e..f0b27a3 100644
--- a/result/HTML/doc2.htm
+++ b/result/HTML/doc2.htm
@@ -8,17 +8,19 @@
           function NS_NewOpen(url,nam,atr){return(new NS_NullWindow());}
           window.open=NS_NewOpen;
 </script>
-<!-- END Naviscope Javascript --><!-- saved from url=(0027)http://www.agents-tech.com/ --><meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
+<!-- END Naviscope Javascript --><!-- saved from url=(0027)http://www.agents-tech.com/ --><meta content="text/html; charset=iso-8859-1" http>
+</head>
+<body><p>-equiv=Content-Type&gt;
 <meta content="Copernic.com Inc. develops innovative agent technology solutions to efficiently access and manage the overwhelming quantity of information available on the Internet and intranets." name="DESCRIPTION">
 <meta content="agent,technology,intranet,extranet,management,filtering,ranking,solution,service,intelligent,intelligence,client,server,architecture,developer,development,information,telecommunication,announcement,press,product,profile,contact,multi-agent,meta-search,metasearch,multi-thread,mobile,wireless,shopping,robot,PCS,Copernic,engine,toolkit,CDK,EDK" name="KEYWORDS">
 <meta content="MSHTML 5.00.3103.1000" name="GENERATOR">
-</head>
-<body><frameset border="false" cols="172,*" frameBorder="0" frameSpacing="0">
-<frame marginHeight="0" marginWidth="0" name="left" noResize scrolling="no" src="doc2_files/side.htm" target="rtop">
+<frameset border="false" cols="172,*" frameborder="0" framespacing="0">
+<frame marginheight="0" marginwidth="0" name="left" noresize scrolling="no" src="doc2_files/side.htm" target="rtop">
 <frameset rows="43,*">
-<frame marginHeight="0" marginWidth="0" name="rtop" noResize scrolling="no" src="doc2_files/top.htm" target="rbottom">
-<frame name="rbottom" noResize src="doc2_files/contents.htm" target="_top">
+<frame marginheight="0" marginwidth="0" name="rtop" noresize scrolling="no" src="doc2_files/top.htm" target="rbottom">
+<frame name="rbottom" noresize src="doc2_files/contents.htm" target="_top">
 </frameset>
 <noframes><body bgcolor="#FFFFFF" text="#000000" link="#000080" vlink="#000080" alink="#000080" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0"><p>This page uses frames, but your browser doesn't support them.</p></body></noframes>
-</frameset></body>
+</frameset>
+</body>
 </html>
diff --git a/result/HTML/doc2.htm.err b/result/HTML/doc2.htm.err
index bf46ffa..da3f289 100644
--- a/result/HTML/doc2.htm.err
+++ b/result/HTML/doc2.htm.err
@@ -1,3 +1,15 @@
 ./test/HTML/doc2.htm:10: error: Misplaced DOCTYPE declaration
 <!-- END Naviscope Javascript --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Tr
                                  ^
+./test/HTML/doc2.htm:11: error: error parsing attribute name
+<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
+                                                  ^
+./test/HTML/doc2.htm:11: error: htmlParseStartTag: problem parsing attributes
+<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
+                                                  ^
+./test/HTML/doc2.htm:11: error: Couldn't find end of Start Tag meta
+<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
+                                                  ^
+./test/HTML/doc2.htm:18: error: Unexpected end tag : head
+<META content="MSHTML 5.00.3103.1000" name=GENERATOR></HEAD><FRAMESET 
+                                                            ^
diff --git a/result/HTML/doc2.htm.sax b/result/HTML/doc2.htm.sax
index 1a23b28..99ac0eb 100644
--- a/result/HTML/doc2.htm.sax
+++ b/result/HTML/doc2.htm.sax
@@ -22,29 +22,33 @@
 SAX.comment( saved from url=(0027)http://www.agents-tech.com/ )
 SAX.ignorableWhitespace(
 , 1)
-SAX.startElement(meta, content='text/html; charset=iso-8859-1', http-equiv='Content-Type')
-SAX.endElement(meta)
-SAX.ignorableWhitespace(
-, 1)
+SAX.error: error parsing attribute name
+SAX.error: htmlParseStartTag: problem parsing attributes
+SAX.startElement(meta, content='text/html; charset=iso-8859-1', http)
+SAX.error: Couldn't find end of Start Tag meta
+SAX.endElement(head)
+SAX.startElement(body)
+SAX.startElement(p)
+SAX.characters(-equiv=Content-Type&gt;
+, 21)
 SAX.startElement(meta, content='Copernic.com Inc. develops innovative agent technology solutions to efficiently access and manage the overwhelming quantity of information available on the Internet and intranets.', name='DESCRIPTION')
 SAX.endElement(meta)
-SAX.ignorableWhitespace(
+SAX.characters(
 , 1)
 SAX.startElement(meta, content='agent,technology,intranet,extranet,management,filtering,ranking,solution,service,intelligent,intelligence,client,server,architecture,developer,development,information,telecommunication,announcement,press,product,profile,contact,multi-agent,meta-search,metasearch,multi-thread,mobile,wireless,shopping,robot,PCS,Copernic,engine,toolkit,CDK,EDK', name='KEYWORDS')
 SAX.endElement(meta)
-SAX.ignorableWhitespace(
+SAX.characters(
 , 1)
 SAX.startElement(meta, content='MSHTML 5.00.3103.1000', name='GENERATOR')
 SAX.endElement(meta)
-SAX.endElement(head)
-SAX.startElement(body)
-SAX.startElement(frameset, border='false', cols='172,*', frameBorder='0', frameSpacing='0')
-SAX.startElement(frame, marginHeight='0', marginWidth='0', name='left', noResize, scrolling='no', src='doc2_files/side.htm', target='rtop')
+SAX.error: Unexpected end tag : head
+SAX.startElement(frameset, border='false', cols='172,*', frameborder='0', framespacing='0')
+SAX.startElement(frame, marginheight='0', marginwidth='0', name='left', noresize, scrolling='no', src='doc2_files/side.htm', target='rtop')
 SAX.endElement(frame)
 SAX.startElement(frameset, rows='43,*')
-SAX.startElement(frame, marginHeight='0', marginWidth='0', name='rtop', noResize, scrolling='no', src='doc2_files/top.htm', target='rbottom')
+SAX.startElement(frame, marginheight='0', marginwidth='0', name='rtop', noresize, scrolling='no', src='doc2_files/top.htm', target='rbottom')
 SAX.endElement(frame)
-SAX.startElement(frame, name='rbottom', noResize, src='doc2_files/contents.htm', target='_top')
+SAX.startElement(frame, name='rbottom', noresize, src='doc2_files/contents.htm', target='_top')
 SAX.endElement(frame)
 SAX.endElement(frameset)
 SAX.startElement(noframes)
@@ -64,6 +68,7 @@
   , 3)
 SAX.endElement(noframes)
 SAX.endElement(frameset)
+SAX.endElement(p)
 SAX.endElement(body)
 SAX.endElement(html)
 SAX.ignorableWhitespace(
diff --git a/result/HTML/doc3.htm b/result/HTML/doc3.htm
index 483ee52..b7a8b30 100644
--- a/result/HTML/doc3.htm
+++ b/result/HTML/doc3.htm
@@ -8,7 +8,10 @@
           function NS_NewOpen(url,nam,atr){return(new NS_NullWindow());}

           window.open=NS_NewOpen;

 </script>
-<!-- END Naviscope Javascript --><!--last modified on Tuesday, February 22, 2000 11:47 PM --><meta content="text/html;CHARSET=iso-8859-1" http-equiv="Content-Type">
+<!-- END Naviscope Javascript --><!--last modified on Tuesday, February 22, 2000 11:47 PM --><meta content="text/html;CHARSET=iso-8859-1" http>
+</head>
+<body>
+<p>-equiv=Content-Type&gt;

 <meta content="Tim" name="Author">
 <style type="text/css">A.nav {

 	COLOR: #003399; TEXT-DECORATION: none

@@ -27,64 +30,64 @@
 // End -->
 </script>
 <meta content="MSHTML 5.00.3103.1000" name="GENERATOR">
-</head>
-<body aLink="red" bgColor="black" link="red" text="white" vLink="red">
+</p>
+<body alink="red" bgcolor="black" link="red" text="white" vlink="red">
 <p>
 <div align="center">
-<table border="0" cellPadding="0" cellSpacing="0" width="80%"><tbody>
+<table border="0" cellpadding="0" cellspacing="0" width="80%"><tbody>
 <tr>
-<td vAlign="top" width="31"><a href="http://bp6.gamesquad.net/"><img align="bottom" border="0" height="74" src="doc3_files/logo.gif" width="252"></a></td>
-<td align="left" bgColor="#000000">
+<td valign="top" width="31"><a href="http://bp6.gamesquad.net/"><img align="bottom" border="0" height="74" src="doc3_files/logo.gif" width="252"></a></td>
+<td align="left" bgcolor="#000000">
 <img height="15" src="doc3_files/spacer.gif" width="15">
-<!-- START GAMESQUAD.NET IFRAME RICH MEDIA CODE --><!-- © 2000 GameSquad.net All Rights Reserved. --><iframe border="0" frameBorder="no" height="60" marginHeight="0" marginWidth="0" scrolling="no" src="doc3_files/adcycle.htm" width="468"><a href="http://ads.gamesquad.net/addclick.exe/adclick.cgi?REGION=game|tech|ent&amp;id=1" target="_top"><img src="http://ads.gamesquad.net/addclick.exe/adcycle.cgi?group=52&amp;media=1&amp;id=1" width="468" height="60" border="0" ALT="GSN ROS Ad"></a></iframe>
+<!-- START GAMESQUAD.NET IFRAME RICH MEDIA CODE --><!-- &copy; 2000 GameSquad.net All Rights Reserved. --><iframe border="0" frameborder="no" height="60" marginheight="0" marginwidth="0" scrolling="no" src="doc3_files/adcycle.htm" width="468"><a href="http://ads.gamesquad.net/addclick.exe/adclick.cgi?REGION=game|tech|ent&amp;id=1" target="_top"><img src="http://ads.gamesquad.net/addclick.exe/adcycle.cgi?group=52&amp;media=1&amp;id=1" width="468" height="60" border="0" alt="GSN ROS Ad"></a></iframe>
 <!-- END GAMESQUAD.NET IFRAME RICH MEDIA CODE --><br>
 <img height="15" src="doc3_files/spacer.gif" width="400">
 </td>
 </tr>
-<tr><td bgColor="#003399" colSpan="2"><p align="right">
+<tr><td bgcolor="#003399" colspan="2"><p align="right">
 <img align="right" border="0" height="18" hspace="0" src="doc3_files/trcorner.gif" width="20">
 <img align="left" border="0" height="18" hspace="0" src="doc3_files/tlcorner.gif" width="20">
 <font face="Verdana" size="2">Monday, July 31st, 2000</font>
 </p></td></tr>
-<tr><td colSpan="2"><table bgColor="#003399" border="0" cellPadding="0" cellSpacing="4" width="100%"><tbody><tr><td bgColor="#666666" width="100%"><center>
+<tr><td colspan="2"><table bgcolor="#003399" border="0" cellpadding="0" cellspacing="4" width="100%"><tbody><tr><td bgcolor="#666666" width="100%"><center>
 <p>
-<table bgColor="black" border="0" cellPadding="0" cellSpacing="1" width="100%"><tbody><tr><td background="doc3_files/hscan.gif" bgColor="#666666" width="100%">
+<table bgcolor="black" border="0" cellpadding="0" cellspacing="1" width="100%"><tbody><tr><td background="doc3_files/hscan.gif" bgcolor="#666666" width="100%">
 <img height="1" src="doc3_files/spacer.gif" width="738">
 <br>
-<center><table border="0" cellPadding="2" cellSpacing="0" width="91%"><tbody><tr>
-<td vAlign="top" width="15%"><p align="center">
+<center><table border="0" cellpadding="2" cellspacing="0" width="91%"><tbody><tr>
+<td valign="top" width="15%"><p align="center">
 <a href="http://bp6.gamesquad.net/specs.phtml"><img align="bottom" alt="Abit BP6 Motherboard specification and information." border="0" height="45" src="doc3_files/bp6icon.gif" width="70"></a>
 <font face="Verdana" size="1"><br></font>
 <a href="http://bp6.gamesquad.net/specs.phtml"><font color="white" face="Verdana" size="1">BP6 Specs</font></a>
 </p></td>
-<td vAlign="top" width="15%"><p align="center">
+<td valign="top" width="15%"><p align="center">
 <a href="http://bp6.gamesquad.net/bxcool.phtml"><img align="bottom" alt="How to cool the BX Chipset on your BP6." border="0" height="45" src="doc3_files/bxcool.gif" width="70"></a>
 <font face="Verdana" size="1"><br></font>
 <a href="http://bp6.gamesquad.net/uc.phtml"><font color="white" face="Verdana" size="1">BX Cooling</font></a>
 </p></td>
-<td vAlign="top" width="15%"><p align="center">
+<td valign="top" width="15%"><p align="center">
 <a href="http://bp6.gamesquad.net/contest.phtml"><img align="bottom" alt="The U;timate Gaming Contest - Coming Soon!" border="0" height="45" src="doc3_files/ugmcontest.gif" width="70"></a>
 <font face="Verdana" size="1"><br></font>
 <a href="http://bp6.gamesquad.net/contest.phtml"><font color="white" face="Verdana" size="1">UGM Contest</font></a>
 </p></td>
-<td vAlign="top" width="15%"><p align="center">
+<td valign="top" width="15%"><p align="center">
 <a href="http://bp6.gamesquad.net/uc.phtml"><img align="bottom" alt="Cooling &amp; Heatsink review for the BP6." border="0" height="45" src="doc3_files/alpha.gif" width="70"></a>
 <font face="Verdana" size="1"><br></font>
 <a href="http://bp6.gamesquad.net/uc.phtml"><font color="white" face="Verdana" size="1">Heatsinks</font></a>
 </p></td>
-<td vAlign="top" width="15%"><p align="center">
+<td valign="top" width="15%"><p align="center">
 <a href="http://bp6.gamesquad.net/101.phtml"><img align="bottom" alt="BP6 101 - Class is now in session. Welcome newbies!" border="0" height="45" src="doc3_files/bp6101.gif" width="70"></a>
 <font face="Verdana" size="1"><br></font>
 <a href="http://bp6.gamesquad.net/101.phtml"><font color="white" face="Verdana" size="1">BP6 101</font></a>
 </p></td>
-<td vAlign="top" width="15%"><p align="center">
+<td valign="top" width="15%"><p align="center">
 <a href="http://bp6.gamesquad.net/win2k_install.phtml"><img align="bottom" alt="Install guide for installing Windows 2000 on the BP6 " border="0" height="45" src="doc3_files/win2kht.gif" width="70"></a>
 <font face="Verdana" size="1"><br></font>
 <a href="http://bp6.gamesquad.net/win2k_install.phtml"><font color="white" face="Verdana" size="1">Win2k Install</font></a>
 </p></td>
-<td vAlign="top" width="15%"><p align="center">
+<td valign="top" width="15%"><p align="center">
 <a href="http://www.gentus.com/">
-<img align="bottom" alt="Taking a first look at the Abit Linux release called " border="0" height="45" src="doc3_files/gentusbox.gif" width="70" Gentus>?.?&gt;</a>
+<img align="bottom" alt="Taking a first look at the Abit Linux release called " border="0" height="45" src="doc3_files/gentusbox.gif" width="70" gentus>?.?&gt;</a>
 <br>
 <a href="http://www.gentus.com/"><font color="white" face="Verdana" size="1">Gentus</font></a>
 </p></td>
@@ -92,8 +95,8 @@
 </tbody></table>
 </center></tbody></table>
 </tbody></table>
-<table bgColor="#003399" border="0" cellSpacing="6" width="80%"><tbody><tr>
-<td bgColor="black" vAlign="top" width="10%"><table border="0" cellPadding="3" cellSpacing="0" width="100%"><tbody><tr><td width="100%">
+<table bgcolor="#003399" border="0" cellspacing="6" width="80%"><tbody><tr>
+<td bgcolor="black" valign="top" width="10%"><table border="0" cellpadding="3" cellspacing="0" width="100%"><tbody><tr><td width="100%">
 <img height="1" src="doc3_files/spacer.gif" width="111">
 <br>
 <b><font color="yellow" face="Verdana" size="2">REVIEWS</font></b>
@@ -177,12 +180,12 @@
 <br>
 <!--<A HREF="code:javascript:ID_FTPWebView.InvokeHelp()"><FONT SIZE="1" COLOR="white" FACE="Verdana">FTP Help</FONT></A>-->
 </td></tr></tbody></table>
-<td bgColor="white" vAlign="top" width="80%">
+<td bgcolor="white" valign="top" width="80%">
 <img height="1" src="doc3_files/spacer.gif" width="490">
 <br>
 <center>
 <p>
-<table bgColor="white" border="0" cellPadding="10" cellSpacing="0" height="100%" width="100%"><tbody><tr><td bgColor="white" vAlign="top" width="100%">
+<table bgcolor="white" border="0" cellpadding="10" cellspacing="0" height="100%" width="100%"><tbody><tr><td bgcolor="white" valign="top" width="100%">
 <center><a href="http://www.encounter2001.com/" target="_blank"><img border="0" height="60" src="doc3_files/banner2.gif" width="468"></a></center>
 <br>
 <a name="news_top"></a>
@@ -221,7 +224,7 @@
 <br>
 <br>
 <!-- NP v3.7.5 --><a name="newsitem965012956,78924,"></a>
-<table bgColor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Sunday, 

+<table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Sunday, 

                   July 30, 2000</b></font></td></tr></tbody></table>
 <br>
 <!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">Chat with 

@@ -229,12 +232,12 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:Holodeck@bp6.com">Holodeck2</a> @ 8:09PM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/965012956,78924,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/965012956,78924,.html">
 <img border="0" src="doc3_files/comments.gif">0 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
-<font color="black" face="Arial" size="2">I&#x2019;m slacking a little. All game no 

+<font color="black" face="Arial" size="2">I&rsquo;m slacking a little. All game no 

             work makes Holodeck2 a happy boy :-)<br>
 <br>Wallpaper update: I got 

             off my lazy ass and redid the 1280x1024 wall paper, now it has the 2 

@@ -242,7 +245,7 @@
 <br>
 <b><a href="http://fullon3d.com/chat/abit/" target="3d">Fullon3d had a live chat with that Eric guy from Abit. 

             </a></b>Submitted by: MJS<br>
-<br>Here&#x2019;s a little clip:<br>[Falcon] 

+<br>Here&rsquo;s a little clip:<br>[Falcon] 

             BP6-2??<br>[EricBoeing] We already have a micro ATX dual flip-chip 

             board<br>[EricBoeing] but it's OEM only<br>[EricBoeing] the full ATX 

             version should be out Septemberish<br>
@@ -250,7 +253,7 @@
 <br>
 <br>
 <a name="newsitem964766837,26344,"></a>
-<table bgColor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Thursday, 

+<table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Thursday, 

                   July 27, 2000</b></font></td></tr></tbody></table>
 <br>
 <!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">Fixed 

@@ -258,9 +261,9 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:Holodeck@bp6.com">Holodeck2</a> @ 11:47PM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/964766837,26344,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/964766837,26344,.html">
 <img border="0" src="doc3_files/comments.gif">5 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">
@@ -306,9 +309,9 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:Holodeck@bp6.com">Holodeck2</a> @ 10:40PM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/964762841,25865,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/964762841,25865,.html">
 <img border="0" src="doc3_files/comments.gif">5 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">
@@ -334,9 +337,9 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:Holodeck@bp6.com">Holodeck2</a> @ 2:10PM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/964732235,45502,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/964732235,45502,.html">
 <img border="0" src="doc3_files/comments.gif">0 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">Good afternoon for everyone living in 

@@ -364,9 +367,9 @@
             places.</font></u></b>
 <br>
 <font color="#0066cc" face="Arial" size="1">
-<small>Posted by <a class="nav" href="mailto:tim@bp6.com">tim</a> @ 8:54AM PDT</small>  <a href="http://bp6.gamesquad.net/news/964713289,83675,.html">
+<small>Posted by <a class="nav" href="mailto:tim@bp6.com">tim</a> @ 8:54AM PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/964713289,83675,.html">
 <img border="0" src="doc3_files/comments.gif">0 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">Need some cooling for your Videocard 

@@ -377,7 +380,7 @@
 <br>
 <br>
 <a name="newsitem964671589,7831,"></a>
-<table bgColor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Wednesday, July 26, 

+<table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Wednesday, July 26, 

             2000</b></font></td></tr></tbody></table>
 <br>
 <!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">is it 

@@ -385,9 +388,9 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:Holodeck@bp6.com">Holodeck2</a> @ 9:19PM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/964671589,7831,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/964671589,7831,.html">
 <img border="0" src="doc3_files/comments.gif">0 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">Big heatsinks are good, very good. The 

@@ -400,7 +403,7 @@
             watercooling next up :-)<br>(if you pry off the heatsink you void 

             the warranty )<br>
 <br>it was originally posted on <a href="http://www.hardocp.com/">[H]ardOCP </a>
-<br>I&#x2019;m not only a 

+<br>I&rsquo;m not only a 

             BP6er but also a [H]ardOCPer<br>
 </font>
 <br>
@@ -410,9 +413,9 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:Holodeck@bp6.com">Holodeck2</a> @ 1:40PM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/964644047,60218,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/964644047,60218,.html">
 <img border="0" src="doc3_files/comments.gif">8 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">Now this person really knows how to 

@@ -430,9 +433,9 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:Holodeck@bp6.com">Holodeck2</a> @ 10:05AM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/964631110,84122,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/964631110,84122,.html">
 <img border="0" src="doc3_files/comments.gif">6 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">This is for all you people who wanted 

@@ -456,7 +459,7 @@
 <br>
 <br>
 <a name="newsitem964587833,74573,"></a>
-<table bgColor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Tuesday, 

+<table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Tuesday, 

                   July 25, 2000</b></font></td></tr></tbody></table>
 <br>
 <!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">HELLO 

@@ -464,12 +467,12 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:Holodeck@bp6.com">Holodeck2</a> @ 10:03PM 

-            PDT</small>  <br>
+            PDT</small>&nbsp; <br>
 <font color="black" face="Arial" size="2">Hello 

             everyone, Woohoo!! I'm on!!<br>Who is this Holodeck2 person 

-            anyways?!?! Read on :-)<br>I&#x2019;m a regular on the bp6 messageboard, 

-            trying to help people out with their problems.<br>I&#x2019;m the 

-            self-proclaimed bp6 cooling expert, If you have a cooling idea, I&#x2019;ve 

+            anyways?!?! Read on :-)<br>I&rsquo;m a regular on the bp6 messageboard, 

+            trying to help people out with their problems.<br>I&rsquo;m the 

+            self-proclaimed bp6 cooling expert, If you have a cooling idea, I&rsquo;ve 

             probably already done it and can offer some incite.<br>My computer 

             is always on so you can contact me whenever... problem is, I'm not 

             always in front of it. I'll try to update this page and keep 

@@ -481,25 +484,25 @@
             write me an e-mail please put in the subject line &quot;BP6&quot; then the 

             rest of your subject so my e-mail program can sort it, thanks<br>
 <a href="http://www.aol.com/aim">AIM: </a>Holodeck2 (instant response 

-            if I&#x2019;m in front of my comp and not trying to frag someone)<br>
+            if I&rsquo;m in front of my comp and not trying to frag someone)<br>
 <a href="http://www.icq.com/download">ICQ: </a>82640218 (rarely 

             on)<br>
-<br>P.S. If someone named &#x201C;Digital Vortex&#x201D; on either Quake 3 

-            or 2 frags you, it&#x2019;s probably me. ;-)<br>
+<br>P.S. If someone named &ldquo;Digital Vortex&rdquo; on either Quake 3 

+            or 2 frags you, it&rsquo;s probably me. ;-)<br>
 </font>
 <br>
 <br>
 <a name="newsitem964429577,13375,"></a>
-<table bgColor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Monday, 

+<table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Monday, 

                   July 24, 2000</b></font></td></tr></tbody></table>
 <br>
 <!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">BP6 Q3 server up and 

             running..</font></u></b>
 <br>
 <font color="#0066cc" face="Arial" size="1">
-<small>Posted by <a class="nav" href="mailto:tim@bp6.com">tim</a> @ 2:06AM PDT</small>  <a href="http://bp6.gamesquad.net/news/964429577,13375,.html">
+<small>Posted by <a class="nav" href="mailto:tim@bp6.com">tim</a> @ 2:06AM PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/964429577,13375,.html">
 <img border="0" src="doc3_files/comments.gif">3 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">Setup a Q3 server for anyone wanting 

@@ -515,9 +518,9 @@
             rescue....</font></u></b>
 <br>
 <font color="#0066cc" face="Arial" size="1">
-<small>Posted by <a class="nav" href="mailto:tim@bp6.com">tim</a> @ 12:53AM PDT</small>  <a href="http://bp6.gamesquad.net/news/964425184,95812,.html">
+<small>Posted by <a class="nav" href="mailto:tim@bp6.com">tim</a> @ 12:53AM PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/964425184,95812,.html">
 <img border="0" src="doc3_files/comments.gif">2 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">Do you sweat during the BIOS flashing 

@@ -541,7 +544,7 @@
 <br>
 <br>
 <a name="newsitem963875853,12731,"></a>
-<table bgColor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Monday, 

+<table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Monday, 

                   July 17, 2000</b></font></td></tr></tbody></table>
 <br>
 <!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">How To 

@@ -549,9 +552,9 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:killz@i82hq.com">DareDevil</a> @ 4:17PM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/963875853,12731,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/963875853,12731,.html">
 <img border="0" src="doc3_files/comments.gif">3 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">For those of you who are new to 

@@ -569,9 +572,9 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:killz@i82hq.com">DareDevil</a> @ 4:11PM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/963875485,23353,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/963875485,23353,.html">
 <img border="0" src="doc3_files/comments.gif">1 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">Wow! I am impressed! Nevermind keeping 

@@ -596,14 +599,14 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:killz@i82hq.com">DareDevil</a> @ 11:53AM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/963859982,88982,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/963859982,88982,.html">
 <img border="0" src="doc3_files/comments.gif">1 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">We all need to have some fun 

             sometimes! Check out this little web site that sells 'nerd' clothing 

-            ;) (I like the bibs in the Junior Hackerz section) :-Þ<br>
+            ;) (I like the bibs in the Junior Hackerz section) :-&THORN;<br>
 <br>
 <div align="center"><a href="http://www.nerdgear.com/" target="_blank"><img border="0" src="doc3_files/nerdinside.gif"></a></div>
 </font>
@@ -614,9 +617,9 @@
             Part 1 Watercooling Project)</font></u></b>
 <br>
 <font color="#0066cc" face="Arial" size="1">
-<small>Posted by <a class="nav" href="mailto:tim@bp6.com">tim</a> @ 12:43AM PDT</small>  <a href="http://bp6.gamesquad.net/news/963819796,9688,.html">
+<small>Posted by <a class="nav" href="mailto:tim@bp6.com">tim</a> @ 12:43AM PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/963819796,9688,.html">
 <img border="0" src="doc3_files/comments.gif">11 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">When is comes to overclocking your 

@@ -638,7 +641,7 @@
 <br>
 <br>
 <a name="newsitem963766655,78511,"></a>
-<table bgColor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Sunday, 

+<table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Sunday, 

                   July 16, 2000</b></font></td></tr></tbody></table>
 <br>
 <!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">RAM Overclocking? 

@@ -646,9 +649,9 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:killz@i82hq.com">DareDevil</a> @ 9:57AM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/963766655,78511,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/963766655,78511,.html">
 <img border="0" src="doc3_files/comments.gif">3 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">I know we're pretty big overclockers 

@@ -674,7 +677,7 @@
 <a href="http://www.extremeoverclocking.com/reviews/memory/ram_roundup_1.html" target="_blank">Cooked RAM... Yummie</a>
 <br>
 <br>The 

-            ÐÐ.</font>
+            &ETH;&ETH;.</font>
 <br>
 <br>
 <a name="newsitem963764236,76720,"></a>
@@ -683,9 +686,9 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:killz@i82hq.com">DareDevil</a> @ 9:17AM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/963764236,76720,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/963764236,76720,.html">
 <img border="0" src="doc3_files/comments.gif">0 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">A follow up on the 'Weekly CPU 

@@ -698,7 +701,7 @@
 <br>
 <br>
 <a name="newsitem963685749,28290,"></a>
-<table bgColor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Saturday, 

+<table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Saturday, 

                   July 15, 2000</b></font></td></tr></tbody></table>
 <br>
 <!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">Weekly CPU 

@@ -706,9 +709,9 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:killz@i82hq.com">DareDevil</a> @ 11:29AM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/963685749,28290,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/963685749,28290,.html">
 <img border="0" src="doc3_files/comments.gif">2 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">Wow, found this very useful! Wanting 

@@ -725,9 +728,9 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:killz@i82hq.com">DareDevil</a> @ 9:51AM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/963679881,35277,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/963679881,35277,.html">
 <img border="0" src="doc3_files/comments.gif">0 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">FAST-MHz has released some wallpapers! 

@@ -744,11 +747,11 @@
             guys.<br>
 <br>Okay, that's all for now.<br>
 <br>The 

-            ÐÐ.</font>
+            &ETH;&ETH;.</font>
 <br>
 <br>
 <a name="newsitem963619505,3764,"></a>
-<table bgColor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Friday, 

+<table bgcolor="#003399" width="100%"><tbody><tr><td><font color="#ffffff" face="Verdana,arial" size="2"><b>Friday, 

                   July 14, 2000</b></font></td></tr></tbody></table>
 <br>
 <!--<hr noshade width=100%>--><b><u><font color="#003366" face="Verdana, Arial" size="2">Hey 

@@ -756,9 +759,9 @@
 <br>
 <font color="#0066cc" face="Arial" size="1">
 <small>Posted by <a class="nav" href="mailto:killz@i82hq.com">DareDevil</a> @ 5:05PM 

-            PDT</small>  <a href="http://bp6.gamesquad.net/news/963619505,3764,.html">
+            PDT</small>&nbsp; <a href="http://bp6.gamesquad.net/news/963619505,3764,.html">
 <img border="0" src="doc3_files/comments.gif">7 comments</a> 

-             | <a href="http://bp6.gamesquad.net/#news_top">top</a>
+            &nbsp;|&nbsp;<a href="http://bp6.gamesquad.net/#news_top">top</a>
 </font>
 <br>
 <font color="black" face="Arial" size="2">Hey guys, just wanted to introduce 

@@ -770,17 +773,17 @@
 <br>
 <br>Ciao for 

             now.<br>
-<br>The ÐÐ.</font>
+<br>The &ETH;&ETH;.</font>
 <br>
 <br>
 </font>
-<center><iframe frameBorder="0" height="60" marginHeight="0" marginWidth="0" noResize scrolling="no" src="doc3_files/ad_iframe.htm" width="468"><a href="http://ads.adflight.com/go_static.asp?asid=7708" target="_top"><img width="468" height="60" border="0" alt="Advertisement" src="http://ads.adflight.com/ad_static.asp?pid=2097&amp;sid=1881&amp;asid=7708"></a></iframe></center>
+<center><iframe frameborder="0" height="60" marginheight="0" marginwidth="0" noresize scrolling="no" src="doc3_files/ad_iframe.htm" width="468"><a href="http://ads.adflight.com/go_static.asp?asid=7708" target="_top"><img width="468" height="60" border="0" alt="Advertisement" src="http://ads.adflight.com/ad_static.asp?pid=2097&amp;sid=1881&amp;asid=7708"></a></iframe></center>
 </tbody></table>
 </center>
 
-<td bgColor="silver" vAlign="top" width="10%"><center>
+<td bgcolor="silver" valign="top" width="10%"><center>
 <p>
-<table bgColor="silver" border="0" cellPadding="0" cellSpacing="0" width="100%"><tbody><tr><td COLSTART="1"><center>
+<table bgcolor="silver" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td colstart="1"><center>
 <!--	<FORM ACTION="/cgi-bin/subscribe.pl" METHOD="POST" ENCTYPE="application/x-www-form-urlencoded">

 						<IMG SRC="/images/spacer.gif" WIDTH="111" HEIGHT="1"><BR>

 						<P><B><FONT SIZE="2" COLOR="#000066" FACE="Verdana">Newsletter</FONT></B><FONT SIZE="1" FACE="Verdana"><BR>

@@ -815,7 +818,7 @@
 						</TD>

 					</TR>

 				</TABLE> 

---><table bgColor="silver" border="0" cellPadding="0" cellSpacing="0" width="100%"><tbody><tr><td align="middle" width="100%">
+--><table bgcolor="silver" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td align="middle" width="100%">
 <!-- BEGIN GoTo.com Search Box --><script language="javascript" type="text/javascript"><!--

 							if ((parseInt(navigator.appVersion) >= 3)

 							&& (navigator.appName != "Netscape")) {

@@ -845,7 +848,7 @@
 							}

 							// --></script>
 <b><noscript></noscript></b>
-<a href="http://www.goto.com/d/search/ssn/?fromGIF=true" target="_blank"><img align="bottom" border="0" height="90" isMap src="doc3_files/100x90.gif" width="100"></a>
+<a href="http://www.goto.com/d/search/ssn/?fromGIF=true" target="_blank"><img align="bottom" border="0" height="90" ismap src="doc3_files/100x90.gif" width="100"></a>
 <b><a href="http://www.goto.com/d/search/ssn/?fromGIF=true" target="_blank"></a></b>
 <b></b>
 <b><!-- END GoTo.com Search Box --></b>
@@ -853,7 +856,7 @@
 <b><font color="white" face="ARIAL, HELVETICA" size="1">PC Price 

             Search<br>
 </font></b>
-<input maxLength="30" name="criteria" size="10">
+<input maxlength="30" name="criteria" size="10">
 <br>
 <input name="submit" style="BACKGROUND-COLOR: #000000; COLOR: #ffffff; FONT-FAMILY: Verdana; FONT-SIZE: xx-small; FONT-WEIGHT: bold" type="submit" value="Search">
 </p></center></form>
@@ -871,13 +874,13 @@
 </td></tr></tbody></table>
 </center>
 </tbody></table>
-<table bgColor="silver" border="0" cellPadding="0" cellSpacing="0" height="100%" width="100%"><tbody><tr><td width="100%"> </td></tr></tbody></table>
+<table bgcolor="silver" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%"><tbody><tr><td width="100%">&nbsp;</td></tr></tbody></table>
 <!--	</TABLE>--><center></center>
-<tr><td COLSPAN="3" VALIGN="TOP" HEIGHT="70"> </td></tr>
+<tr><td colspan="3" valign="TOP" height="70">&nbsp;</td></tr>
 <table border="0" width="780"><tbody>
 <tr><td width="780"><p align="center">
 <font color="#999999" face="verdana,arial" size="1">Copyright 

-      ©1999-2000 BP6.com, All rights reserved.<br>Got news? Send it to </font>
+      &copy;1999-2000 BP6.com, All rights reserved.<br>Got news? Send it to </font>
 <a href="mailto:tim@bp6.com"><font color="white" face="Verdana" size="1">Tim</font></a>
 </p></td></tr>
 <!--	<TR>		<TD WIDTH="780">			<P ALIGN="CENTER"><FONT SIZE="1" COLOR="#999999" FACE="Verdana,arial">Site design by Tim Brinkley</FONT>		</TD>	</TR> -->
@@ -885,4 +888,5 @@
 </div>
 <script> window.open=NS_ActualOpen; </script>
 </body>
+</body>
 </html>
diff --git a/result/HTML/doc3.htm.err b/result/HTML/doc3.htm.err
index 51266e1..9eae546 100644
--- a/result/HTML/doc3.htm.err
+++ b/result/HTML/doc3.htm.err
@@ -1,6 +1,18 @@
 ./test/HTML/doc3.htm:10: error: Misplaced DOCTYPE declaration
 <!-- END Naviscope Javascript --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//E
                                  ^
+./test/HTML/doc3.htm:11: error: error parsing attribute name
+<META content=text/html;CHARSET=iso-8859-1 http-equiv=Content-Type>
+                                               ^
+./test/HTML/doc3.htm:11: error: htmlParseStartTag: problem parsing attributes
+<META content=text/html;CHARSET=iso-8859-1 http-equiv=Content-Type>
+                                               ^
+./test/HTML/doc3.htm:11: error: Couldn't find end of Start Tag meta
+<META content=text/html;CHARSET=iso-8859-1 http-equiv=Content-Type>
+                                               ^
+./test/HTML/doc3.htm:37: error: Unexpected end tag : head
+<META content="MSHTML 5.00.3103.1000" name=GENERATOR></HEAD>
+                                                           ^
 ./test/HTML/doc3.htm:52: error: htmlParseEntityRef: expecting ';'
  href="http://ads.gamesquad.net/addclick.exe/adclick.cgi?REGION=game|tech|ent&i
                                                                                 ^
diff --git a/result/HTML/doc3.htm.sax b/result/HTML/doc3.htm.sax
index 0f26df0..ed37c7e 100644
--- a/result/HTML/doc3.htm.sax
+++ b/result/HTML/doc3.htm.sax
Binary files differ
diff --git a/result/HTML/test2.html b/result/HTML/test2.html
index d8f9522..8887a68 100644
--- a/result/HTML/test2.html
+++ b/result/HTML/test2.html
@@ -1,12 +1,12 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
 <html>
 <head><title>Linux Today</title></head>
-<body bgcolor="White" link="Blue" text="Black" VLINK="Black" ALINK="Red">
+<body bgcolor="White" link="Blue" text="Black" vlink="Black" alink="Red">
 <center>
-<table BORDER="0" WIDTH="100%" CELLSPACING="0" CELLPADDING="0"><tr BGCOLOR="#FFFFFF">
-<td HEIGHT="90"><a href="http://linuxtoday.com/cgi-bin/click.pl?adnum=49"><img src="/pics/door_linux.gif" border="0" width="468" height="60" alt="Atipa Linux solutions. Your reliable cluster, server, and workstation solution. Win a Free Celeron Linux Workstation!"></a></td>
+<table border="0" width="100%" cellspacing="0" cellpadding="0"><tr bgcolor="#FFFFFF">
+<td height="90"><a href="http://linuxtoday.com/cgi-bin/click.pl?adnum=49"><img src="/pics/door_linux.gif" border="0" width="468" height="60" alt="Atipa Linux solutions. Your reliable cluster, server, and workstation solution. Win a Free Celeron Linux Workstation!"></a></td>
 <td>
-<img SRC="/pics/lt.gif" VSPACE="5" alt="Linux Today Logo">
+<img src="/pics/lt.gif" vspace="5" alt="Linux Today Logo">
 <br>
 <font size="-1">
 <a href="http://linux.com">linux.com</a> partner</font>
diff --git a/result/HTML/test2.html.sax b/result/HTML/test2.html.sax
index 191b323..03f7285 100644
--- a/result/HTML/test2.html.sax
+++ b/result/HTML/test2.html.sax
@@ -10,20 +10,20 @@
 SAX.endElement(head)
 SAX.ignorableWhitespace(
 , 1)
-SAX.startElement(body, bgcolor='White', link='Blue', text='Black', VLINK='Black', ALINK='Red')
+SAX.startElement(body, bgcolor='White', link='Blue', text='Black', vlink='Black', alink='Red')
 SAX.ignorableWhitespace(
 
 , 2)
 SAX.startElement(center)
 SAX.characters(
 , 1)
-SAX.startElement(table, BORDER='0', WIDTH='100%', CELLSPACING='0', CELLPADDING='0')
+SAX.startElement(table, border='0', width='100%', cellspacing='0', cellpadding='0')
 SAX.characters(
         , 9)
-SAX.startElement(tr, BGCOLOR='#FFFFFF')
+SAX.startElement(tr, bgcolor='#FFFFFF')
 SAX.characters(
                 , 17)
-SAX.startElement(td, HEIGHT='90')
+SAX.startElement(td, height='90')
 SAX.characters(
 , 1)
 SAX.startElement(a, href='http://linuxtoday.com/cgi-bin/click.pl?adnum=49')
@@ -37,7 +37,7 @@
 SAX.characters(
     , 5)
 SAX.startElement(td)
-SAX.startElement(img, SRC='/pics/lt.gif', VSPACE='5', alt='Linux Today Logo')
+SAX.startElement(img, src='/pics/lt.gif', vspace='5', alt='Linux Today Logo')
 SAX.endElement(img)
 SAX.startElement(br)
 SAX.endElement(br)
diff --git a/result/HTML/wired.html b/result/HTML/wired.html
index 6a523fb..473307b 100644
--- a/result/HTML/wired.html
+++ b/result/HTML/wired.html
@@ -3,70 +3,70 @@
 <head><title>Top Stories News from Wired News</title></head>
 <body bgcolor="#FFFFFF" text="#000000" link="#333399" vlink="#660066" alink="#666699">
 <table border="0" width="600" cellspacing="0" cellpadding="0"><tr>
-<td valign="top" align="LEFT"><table BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="468" HEIGHT="60" BGCOLOR="#FFFFFF"><form METHOD="GET" ACTION="http://nsads.hotwired.com/event.ng/Type=click&amp;ProfileID=9688&amp;RunID=14074&amp;AdID=22584&amp;GroupID=1&amp;FamilyID=2684&amp;TagValues=8.25.156.159.166.171.172.174.179.180.181.182.183.196.197.199.208.389.412.436.2041.6750.78456.79630.81880&amp;Redirect=http://www.springstreet.com/aa/citysearch.htm" id="form1" name="form1">
+<td valign="top" align="LEFT"><table border="0" cellpadding="0" cellspacing="0" width="468" height="60" bgcolor="#FFFFFF"><form method="GET" action="http://nsads.hotwired.com/event.ng/Type=click&amp;ProfileID=9688&amp;RunID=14074&amp;AdID=22584&amp;GroupID=1&amp;FamilyID=2684&amp;TagValues=8.25.156.159.166.171.172.174.179.180.181.182.183.196.197.199.208.389.412.436.2041.6750.78456.79630.81880&amp;Redirect=http://www.springstreet.com/aa/citysearch.htm" id="form1" name="form1">
 <tr>
-<td BGCOLOR="#330099"><input NAME="city" TYPE="text" SIZE="7" MAXLENGTH="20" VALUE="Seattle"></td>
-<td ROWSPAN="2" ALIGN="LEFT" BGCOLOR="FFFFFF"><input TYPE="IMAGE" SRC="http://static.wired.com/advertising/blipverts/allapartments/990625jpa_ssthome.gif" WIDTH="375" HEIGHT="60" BORDER="0" VALUE="search" HSPACE="0" alt="Search over 6,000,000 Apts with SpringStreet"></td>
+<td bgcolor="#330099"><input name="city" type="text" size="7" maxlength="20" value="Seattle"></td>
+<td rowspan="2" align="LEFT" bgcolor="FFFFFF"><input type="IMAGE" src="http://static.wired.com/advertising/blipverts/allapartments/990625jpa_ssthome.gif" width="375" height="60" border="0" value="search" hspace="0" alt="Search over 6,000,000 Apts with SpringStreet"></td>
 </tr>
-<tr><td BGCOLOR="#330099">
-<select NAME="state"><option VALUE="WA" SELECTED>WA

-<option VALUE="AL">AL</option>
-<option VALUE="AK">AK</option>
-<option VALUE="AZ">AZ</option>
-<option VALUE="AR">AR</option>
-<option VALUE="CA">CA</option>
-<option VALUE="CO">CO</option>
-<option VALUE="CT">CT</option>
-<option VALUE="DE">DE</option>
-<option VALUE="DC">DC</option>
-<option VALUE="FL">FL</option>
-<option VALUE="GA">GA</option>
-<option VALUE="HI">HI</option>
-<option VALUE="ID">ID</option>
-<option VALUE="IL">IL</option>
-<option VALUE="IN">IN</option>
-<option VALUE="IA">IA</option>
-<option VALUE="KS">KS</option>
-<option VALUE="KY">KY</option>
-<option VALUE="LA">LA</option>
-<option VALUE="ME">ME</option>
-<option VALUE="MD">MD</option>
-<option VALUE="MA">MA</option>
-<option VALUE="MI">MI</option>
-<option VALUE="MN">MN</option>
-<option VALUE="MS">MS</option>
-<option VALUE="MO">MO</option>
-<option VALUE="MT">MT</option>
-<option VALUE="NE">NE</option>
-<option VALUE="NV">NV</option>
-<option VALUE="NH">NH</option>
-<option VALUE="NJ">NJ</option>
-<option VALUE="NM">NM</option>
-<option VALUE="NY">NY</option>
-<option VALUE="NC">NC</option>
-<option VALUE="ND">ND</option>
-<option VALUE="OH">OH</option>
-<option VALUE="OK">OK</option>
-<option VALUE="OR">OR</option>
-<option VALUE="PA">PA</option>
-<option VALUE="PR">PR</option>
-<option VALUE="RI">RI</option>
-<option VALUE="SC">SC</option>
-<option VALUE="SD">SD</option>
-<option VALUE="TN">TN</option>
-<option VALUE="TX">TX</option>
-<option VALUE="UT">UT</option>
-<option VALUE="VT">VT</option>
-<option VALUE="VA">VA</option>
-<option VALUE="WA">WA</option>
-<option VALUE="WV">WV</option>
-<option VALUE="WI">WI</option>
-<option VALUE="WY">WY</option>
+<tr><td bgcolor="#330099">
+<select name="state"><option value="WA" selected>WA

+<option value="AL">AL</option>
+<option value="AK">AK</option>
+<option value="AZ">AZ</option>
+<option value="AR">AR</option>
+<option value="CA">CA</option>
+<option value="CO">CO</option>
+<option value="CT">CT</option>
+<option value="DE">DE</option>
+<option value="DC">DC</option>
+<option value="FL">FL</option>
+<option value="GA">GA</option>
+<option value="HI">HI</option>
+<option value="ID">ID</option>
+<option value="IL">IL</option>
+<option value="IN">IN</option>
+<option value="IA">IA</option>
+<option value="KS">KS</option>
+<option value="KY">KY</option>
+<option value="LA">LA</option>
+<option value="ME">ME</option>
+<option value="MD">MD</option>
+<option value="MA">MA</option>
+<option value="MI">MI</option>
+<option value="MN">MN</option>
+<option value="MS">MS</option>
+<option value="MO">MO</option>
+<option value="MT">MT</option>
+<option value="NE">NE</option>
+<option value="NV">NV</option>
+<option value="NH">NH</option>
+<option value="NJ">NJ</option>
+<option value="NM">NM</option>
+<option value="NY">NY</option>
+<option value="NC">NC</option>
+<option value="ND">ND</option>
+<option value="OH">OH</option>
+<option value="OK">OK</option>
+<option value="OR">OR</option>
+<option value="PA">PA</option>
+<option value="PR">PR</option>
+<option value="RI">RI</option>
+<option value="SC">SC</option>
+<option value="SD">SD</option>
+<option value="TN">TN</option>
+<option value="TX">TX</option>
+<option value="UT">UT</option>
+<option value="VT">VT</option>
+<option value="VA">VA</option>
+<option value="WA">WA</option>
+<option value="WV">WV</option>
+<option value="WI">WI</option>
+<option value="WY">WY</option>
 </option></select>
-<input TYPE="hidden" NAME="source" VALUE="2hb8bhc059">
+<input type="hidden" name="source" value="2hb8bhc059">
 </td></tr>
 </form></table>
-<td valign="top" align="RIGHT"><a href="http://nsads.hotwired.com/event.ng/Type=click&amp;ProfileID=5597&amp;RunID=17167&amp;AdID=22588&amp;GroupID=1&amp;FamilyID=3228&amp;TagValues=8.25.159.171.172.174.179.180.181.182.183.196.197.199.208.241.389.412.436.2035.6749.6750.70367.78456.79630.81880&amp;Redirect=http:%2F%2Fwww.hp.com%2Fgo%2Foriginal%20" TARGET="_top"><img src="http://static.wired.com/advertising/blipverts/hp_colorinkjet/hp_970c_120x60_6.gif" BORDER="1" height="60" width="120" alt="True to the Original"></a></td>
+<td valign="top" align="RIGHT"><a href="http://nsads.hotwired.com/event.ng/Type=click&amp;ProfileID=5597&amp;RunID=17167&amp;AdID=22588&amp;GroupID=1&amp;FamilyID=3228&amp;TagValues=8.25.159.171.172.174.179.180.181.182.183.196.197.199.208.241.389.412.436.2035.6749.6750.70367.78456.79630.81880&amp;Redirect=http:%2F%2Fwww.hp.com%2Fgo%2Foriginal%20" target="_top"><img src="http://static.wired.com/advertising/blipverts/hp_colorinkjet/hp_970c_120x60_6.gif" border="1" height="60" width="120" alt="True to the Original"></a></td>
 </tr></table>
 <!-- WIRED NEWS header --><!-- CMD_HOST = scoop.hotwired.com --><a name="#"></a>
 <table border="0" width="600" cellspacing="0" cellpadding="0">
@@ -147,13 +147,13 @@
 <center>
 <img src="http://static.wired.com/news/images/spacer.gif" height="3" width="5" alt="">
 <br>
-<img src="http://static.wired.com/news/images/button_ads_news10.gif" width="143" height="56" border="0" ALT="" USEMAP="#buttons" hspace="0" vspace="0">
+<img src="http://static.wired.com/news/images/button_ads_news10.gif" width="143" height="56" border="0" alt="" usemap="#buttons" hspace="0" vspace="0">
 </center>
-<map NAME="buttons">
-<area SHAPE="RECT" ALT="Datek" COORDS="0,0,69,24" HREF="http://r.wired.com/r/1649/http://ads16.focalink.com/SmartBanner/page/1266.631">
-<area SHAPE="RECT" ALT="Wired Index Fund" COORDS="73,0,142,24" HREF="http://r.wired.com/r/227/http://www.gffunds.com/wired">
-<area SHAPE="RECT" ALT="internet.com Index Fund" COORDS="73,31,142,55" HREF="http://r.wired.com/r/298/http://www.gffunds.com/isdex/">
-<area SHAPE="RECT" ALT="GetSmart's MortgageFinder" COORDS="0,31,69,55" HREF="http://r.wired.com/r/294/http://www.getsmartinc.com/mortgage/HomeBanner?BANNERNAME=www.getsmartinc.com/mwired001m6075x25">
+<map name="buttons">
+<area shape="RECT" alt="Datek" coords="0,0,69,24" href="http://r.wired.com/r/1649/http://ads16.focalink.com/SmartBanner/page/1266.631">
+<area shape="RECT" alt="Wired Index Fund" coords="73,0,142,24" href="http://r.wired.com/r/227/http://www.gffunds.com/wired">
+<area shape="RECT" alt="internet.com Index Fund" coords="73,31,142,55" href="http://r.wired.com/r/298/http://www.gffunds.com/isdex/">
+<area shape="RECT" alt="GetSmart's MortgageFinder" coords="0,31,69,55" href="http://r.wired.com/r/294/http://www.getsmartinc.com/mortgage/HomeBanner?BANNERNAME=www.getsmartinc.com/mwired001m6075x25">
 </map>
 </td></tr>
 <!-- END BUTTON ADS --><tr><td bgcolor="#99FF99"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#000000"><a href="http://redirect.wired.com/redir/51/http://stocks.wired.com/">Today's Summary</a></font></td></tr>
@@ -205,7 +205,7 @@
 </form></td></tr>
 <tr align="left" valign="top"><td valign="top" bgcolor="#CCFFCC">
 <input type="submit" value="GO">
-<img SRC="http://barnesandnoble.bfast.com/booklink/serve?sourceid=383471&amp;is_search=Y" border="0" align="top">
+<img src="http://barnesandnoble.bfast.com/booklink/serve?sourceid=383471&amp;is_search=Y" border="0" align="top">
 <!--
 <IMG SRC="http://www.wired.com/partner/bn/trackingimg/ot_wn_nav_c_bn.gif" border=0 width=1 height=1 align=top>
 -->
@@ -611,12 +611,12 @@
 <a href="http://www.wired.com/home/copyright.html">Copyright</a> &copy; 1994-99 Wired Digital Inc. All rights reserved.</font>
 <br>
 <!-- TRACKING --><img src="http://www.wired.com/special/modx/news.gif" height="1" width="1" alt="">
-<map NAME="navstrip.map">
-<area SHAPE="rect" COORDS="0,0,14,16" HREF="/news">
-<area SHAPE="rect" COORDS="15,0 31,16" HREF="/news/business/">
-<area SHAPE="rect" COORDS="32,0,48,16" HREF="/news/culture/">
-<area SHAPE="rect" COORDS="49,0,65,16" HREF="/news/technology/">
-<area SHAPE="rect" COORDS="66,0,83,16" HREF="/news/politics/">
+<map name="navstrip.map">
+<area shape="rect" coords="0,0,14,16" href="/news">
+<area shape="rect" coords="15,0 31,16" href="/news/business/">
+<area shape="rect" coords="32,0,48,16" href="/news/culture/">
+<area shape="rect" coords="49,0,65,16" href="/news/technology/">
+<area shape="rect" coords="66,0,83,16" href="/news/politics/">
 </map>
 </p>
 </td>
diff --git a/result/HTML/wired.html.sax b/result/HTML/wired.html.sax
index bf4695e..1c64b08 100644
--- a/result/HTML/wired.html.sax
+++ b/result/HTML/wired.html.sax
@@ -18,273 +18,273 @@
 SAX.characters(
     , 5)
 SAX.startElement(td, valign='top', align='LEFT')
-SAX.startElement(table, BORDER='0', CELLPADDING='0', CELLSPACING='0', WIDTH='468', HEIGHT='60', BGCOLOR='#FFFFFF')
+SAX.startElement(table, border='0', cellpadding='0', cellspacing='0', width='468', height='60', bgcolor='#FFFFFF')
 SAX.error: htmlParseEntityRef: expecting ';'
 SAX.error: htmlParseEntityRef: expecting ';'
 SAX.error: htmlParseEntityRef: expecting ';'
 SAX.error: htmlParseEntityRef: expecting ';'
 SAX.error: htmlParseEntityRef: expecting ';'
 SAX.error: htmlParseEntityRef: expecting ';'
-SAX.startElement(form, METHOD='GET', ACTION='http://nsads.hotwired.com/event.ng/Type=click&amp;ProfileID=9688&amp;RunID=14074&amp;AdID=22584&amp;GroupID=1&amp;FamilyID=2684&amp;TagValues=8.25.156.159.166.171.172.174.179.180.181.182.183.196.197.199.208.389.412.436.2041.6750.78456.79630.81880&amp;Redirect=http://www.springstreet.com/aa/citysearch.htm', id='form1', name='form1')
+SAX.startElement(form, method='GET', action='http://nsads.hotwired.com/event.ng/Type=click&amp;ProfileID=9688&amp;RunID=14074&amp;AdID=22584&amp;GroupID=1&amp;FamilyID=2684&amp;TagValues=8.25.156.159.166.171.172.174.179.180.181.182.183.196.197.199.208.389.412.436.2041.6750.78456.79630.81880&amp;Redirect=http://www.springstreet.com/aa/citysearch.htm', id='form1', name='form1')
 SAX.characters(

 , 2)
 SAX.startElement(tr)
-SAX.startElement(td, BGCOLOR='#330099')
-SAX.startElement(input, NAME='city', TYPE='text', SIZE='7', MAXLENGTH='20', VALUE='Seattle')
+SAX.startElement(td, bgcolor='#330099')
+SAX.startElement(input, name='city', type='text', size='7', maxlength='20', value='Seattle')
 SAX.endElement(input)
 SAX.endElement(td)
 SAX.characters(

 , 2)
-SAX.startElement(td, ROWSPAN='2', ALIGN='LEFT', BGCOLOR='FFFFFF')
-SAX.startElement(input, TYPE='IMAGE', SRC='http://static.wired.com/advertising/blipverts/allapartments/990625jpa_ssthome.gif', WIDTH='375', HEIGHT='60', BORDER='0', VALUE='search', HSPACE='0', alt='Search over 6,000,000 Apts with SpringStreet')
+SAX.startElement(td, rowspan='2', align='LEFT', bgcolor='FFFFFF')
+SAX.startElement(input, type='IMAGE', src='http://static.wired.com/advertising/blipverts/allapartments/990625jpa_ssthome.gif', width='375', height='60', border='0', value='search', hspace='0', alt='Search over 6,000,000 Apts with SpringStreet')
 SAX.endElement(input)
 SAX.endElement(td)
 SAX.endElement(tr)
 SAX.characters(

 , 2)
 SAX.startElement(tr)
-SAX.startElement(td, BGCOLOR='#330099')
+SAX.startElement(td, bgcolor='#330099')
 SAX.characters(

 , 2)
-SAX.startElement(select, NAME='state')
+SAX.startElement(select, name='state')
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='WA', SELECTED)
+SAX.startElement(option, value='WA', selected)
 SAX.characters(WA

 , 4)
-SAX.startElement(option, VALUE='AL')
+SAX.startElement(option, value='AL')
 SAX.characters(AL, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='AK')
+SAX.startElement(option, value='AK')
 SAX.characters(AK, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='AZ')
+SAX.startElement(option, value='AZ')
 SAX.characters(AZ, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='AR')
+SAX.startElement(option, value='AR')
 SAX.characters(AR, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='CA')
+SAX.startElement(option, value='CA')
 SAX.characters(CA, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='CO')
+SAX.startElement(option, value='CO')
 SAX.characters(CO, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='CT')
+SAX.startElement(option, value='CT')
 SAX.characters(CT, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='DE')
+SAX.startElement(option, value='DE')
 SAX.characters(DE, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='DC')
+SAX.startElement(option, value='DC')
 SAX.characters(DC, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='FL')
+SAX.startElement(option, value='FL')
 SAX.characters(FL, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='GA')
+SAX.startElement(option, value='GA')
 SAX.characters(GA, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='HI')
+SAX.startElement(option, value='HI')
 SAX.characters(HI, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='ID')
+SAX.startElement(option, value='ID')
 SAX.characters(ID, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='IL')
+SAX.startElement(option, value='IL')
 SAX.characters(IL, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='IN')
+SAX.startElement(option, value='IN')
 SAX.characters(IN, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='IA')
+SAX.startElement(option, value='IA')
 SAX.characters(IA, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='KS')
+SAX.startElement(option, value='KS')
 SAX.characters(KS, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='KY')
+SAX.startElement(option, value='KY')
 SAX.characters(KY, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='LA')
+SAX.startElement(option, value='LA')
 SAX.characters(LA, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='ME')
+SAX.startElement(option, value='ME')
 SAX.characters(ME, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='MD')
+SAX.startElement(option, value='MD')
 SAX.characters(MD, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='MA')
+SAX.startElement(option, value='MA')
 SAX.characters(MA, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='MI')
+SAX.startElement(option, value='MI')
 SAX.characters(MI, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='MN')
+SAX.startElement(option, value='MN')
 SAX.characters(MN, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='MS')
+SAX.startElement(option, value='MS')
 SAX.characters(MS, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='MO')
+SAX.startElement(option, value='MO')
 SAX.characters(MO, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='MT')
+SAX.startElement(option, value='MT')
 SAX.characters(MT, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='NE')
+SAX.startElement(option, value='NE')
 SAX.characters(NE, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='NV')
+SAX.startElement(option, value='NV')
 SAX.characters(NV, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='NH')
+SAX.startElement(option, value='NH')
 SAX.characters(NH, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='NJ')
+SAX.startElement(option, value='NJ')
 SAX.characters(NJ, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='NM')
+SAX.startElement(option, value='NM')
 SAX.characters(NM, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='NY')
+SAX.startElement(option, value='NY')
 SAX.characters(NY, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='NC')
+SAX.startElement(option, value='NC')
 SAX.characters(NC, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='ND')
+SAX.startElement(option, value='ND')
 SAX.characters(ND, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='OH')
+SAX.startElement(option, value='OH')
 SAX.characters(OH, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='OK')
+SAX.startElement(option, value='OK')
 SAX.characters(OK, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='OR')
+SAX.startElement(option, value='OR')
 SAX.characters(OR, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='PA')
+SAX.startElement(option, value='PA')
 SAX.characters(PA, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='PR')
+SAX.startElement(option, value='PR')
 SAX.characters(PR, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='RI')
+SAX.startElement(option, value='RI')
 SAX.characters(RI, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='SC')
+SAX.startElement(option, value='SC')
 SAX.characters(SC, 2)
 SAX.endElement(option)
 SAX.characters( 

 , 3)
-SAX.startElement(option, VALUE='SD')
+SAX.startElement(option, value='SD')
 SAX.characters(SD, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='TN')
+SAX.startElement(option, value='TN')
 SAX.characters(TN, 2)
 SAX.endElement(option)
-SAX.startElement(option, VALUE='TX')
+SAX.startElement(option, value='TX')
 SAX.characters(TX, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='UT')
+SAX.startElement(option, value='UT')
 SAX.characters(UT, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='VT')
+SAX.startElement(option, value='VT')
 SAX.characters(VT, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='VA')
+SAX.startElement(option, value='VA')
 SAX.characters(VA, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='WA')
+SAX.startElement(option, value='WA')
 SAX.characters(WA, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='WV')
+SAX.startElement(option, value='WV')
 SAX.characters(WV, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='WI')
+SAX.startElement(option, value='WI')
 SAX.characters(WI, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
-SAX.startElement(option, VALUE='WY')
+SAX.startElement(option, value='WY')
 SAX.characters(WY, 2)
 SAX.endElement(option)
 SAX.characters(

 , 2)
 SAX.endElement(option)
 SAX.endElement(select)
-SAX.startElement(input, TYPE='hidden', NAME='source', VALUE='2hb8bhc059')
+SAX.startElement(input, type='hidden', name='source', value='2hb8bhc059')
 SAX.endElement(input)
 SAX.characters(

 , 2)
@@ -304,8 +304,8 @@
 SAX.error: htmlParseEntityRef: expecting ';'
 SAX.error: htmlParseEntityRef: expecting ';'
 SAX.error: htmlParseEntityRef: expecting ';'
-SAX.startElement(a, href='http://nsads.hotwired.com/event.ng/Type=click&amp;ProfileID=5597&amp;RunID=17167&amp;AdID=22588&amp;GroupID=1&amp;FamilyID=3228&amp;TagValues=8.25.159.171.172.174.179.180.181.182.183.196.197.199.208.241.389.412.436.2035.6749.6750.70367.78456.79630.81880&amp;Redirect=http:%2F%2Fwww.hp.com%2Fgo%2Foriginal%20', TARGET='_top')
-SAX.startElement(img, src='http://static.wired.com/advertising/blipverts/hp_colorinkjet/hp_970c_120x60_6.gif', BORDER='1', height='60', width='120', alt='True to the Original')
+SAX.startElement(a, href='http://nsads.hotwired.com/event.ng/Type=click&amp;ProfileID=5597&amp;RunID=17167&amp;AdID=22588&amp;GroupID=1&amp;FamilyID=3228&amp;TagValues=8.25.159.171.172.174.179.180.181.182.183.196.197.199.208.241.389.412.436.2035.6749.6750.70367.78456.79630.81880&amp;Redirect=http:%2F%2Fwww.hp.com%2Fgo%2Foriginal%20', target='_top')
+SAX.startElement(img, src='http://static.wired.com/advertising/blipverts/hp_colorinkjet/hp_970c_120x60_6.gif', border='1', height='60', width='120', alt='True to the Original')
 SAX.endElement(img)
 SAX.endElement(a)
 SAX.endElement(td)
@@ -877,7 +877,7 @@
 SAX.endElement(img)
 SAX.startElement(br)
 SAX.endElement(br)
-SAX.startElement(img, src='http://static.wired.com/news/images/button_ads_news10.gif', width='143', height='56', border='0', ALT='', USEMAP='#buttons', hspace='0', vspace='0')
+SAX.startElement(img, src='http://static.wired.com/news/images/button_ads_news10.gif', width='143', height='56', border='0', alt='', usemap='#buttons', hspace='0', vspace='0')
 SAX.endElement(img)
 SAX.characters(
 , 1)
@@ -885,22 +885,22 @@
 SAX.characters(
 
 , 2)
-SAX.startElement(map, NAME='buttons')
+SAX.startElement(map, name='buttons')
 SAX.characters(
         , 9)
-SAX.startElement(area, SHAPE='RECT', ALT='Datek', COORDS='0,0,69,24', HREF='http://r.wired.com/r/1649/http://ads16.focalink.com/SmartBanner/page/1266.631')
+SAX.startElement(area, shape='RECT', alt='Datek', coords='0,0,69,24', href='http://r.wired.com/r/1649/http://ads16.focalink.com/SmartBanner/page/1266.631')
 SAX.endElement(area)
 SAX.characters(
         , 9)
-SAX.startElement(area, SHAPE='RECT', ALT='Wired Index Fund', COORDS='73,0,142,24', HREF='http://r.wired.com/r/227/http://www.gffunds.com/wired')
+SAX.startElement(area, shape='RECT', alt='Wired Index Fund', coords='73,0,142,24', href='http://r.wired.com/r/227/http://www.gffunds.com/wired')
 SAX.endElement(area)
 SAX.characters(
         , 9)
-SAX.startElement(area, SHAPE='RECT', ALT='internet.com Index Fund', COORDS='73,31,142,55', HREF='http://r.wired.com/r/298/http://www.gffunds.com/isdex/')
+SAX.startElement(area, shape='RECT', alt='internet.com Index Fund', coords='73,31,142,55', href='http://r.wired.com/r/298/http://www.gffunds.com/isdex/')
 SAX.endElement(area)
 SAX.characters(
         , 9)
-SAX.startElement(area, SHAPE='RECT', ALT='GetSmart&apos;s MortgageFinder', COORDS='0,31,69,55', HREF='http://r.wired.com/r/294/http://www.getsmartinc.com/mortgage/HomeBanner?BANNERNAME=www.getsmartinc.com/mwired001m6075x25')
+SAX.startElement(area, shape='RECT', alt='GetSmart&apos;s MortgageFinder', coords='0,31,69,55', href='http://r.wired.com/r/294/http://www.getsmartinc.com/mortgage/HomeBanner?BANNERNAME=www.getsmartinc.com/mwired001m6075x25')
 SAX.endElement(area)
 SAX.endElement(map)
 SAX.characters(
@@ -1093,7 +1093,7 @@
 
 , 2)
 SAX.error: htmlParseEntityRef: expecting ';'
-SAX.startElement(img, SRC='http://barnesandnoble.bfast.com/booklink/serve?sourceid=383471&amp;is_search=Y', border='0', align='top')
+SAX.startElement(img, src='http://barnesandnoble.bfast.com/booklink/serve?sourceid=383471&amp;is_search=Y', border='0', align='top')
 SAX.endElement(img)
 SAX.characters(
 , 1)
@@ -2782,26 +2782,26 @@
 SAX.characters(
 
 , 2)
-SAX.startElement(map, NAME='navstrip.map')
+SAX.startElement(map, name='navstrip.map')
 SAX.characters(
 , 1)
-SAX.startElement(area, SHAPE='rect', COORDS='0,0,14,16', HREF='/news')
+SAX.startElement(area, shape='rect', coords='0,0,14,16', href='/news')
 SAX.endElement(area)
 SAX.characters(
 , 1)
-SAX.startElement(area, SHAPE='rect', COORDS='15,0 31,16', HREF='/news/business/')
+SAX.startElement(area, shape='rect', coords='15,0 31,16', href='/news/business/')
 SAX.endElement(area)
 SAX.characters(
 , 1)
-SAX.startElement(area, SHAPE='rect', COORDS='32,0,48,16', HREF='/news/culture/')
+SAX.startElement(area, shape='rect', coords='32,0,48,16', href='/news/culture/')
 SAX.endElement(area)
 SAX.characters(
 , 1)
-SAX.startElement(area, SHAPE='rect', COORDS='49,0,65,16', HREF='/news/technology/')
+SAX.startElement(area, shape='rect', coords='49,0,65,16', href='/news/technology/')
 SAX.endElement(area)
 SAX.characters(
 , 1)
-SAX.startElement(area, SHAPE='rect', COORDS='66,0,83,16', HREF='/news/politics/')
+SAX.startElement(area, shape='rect', coords='66,0,83,16', href='/news/politics/')
 SAX.endElement(area)
 SAX.characters(
 , 1)