I''m attempting a Insertion.Bottom operation on a table I''m working on. Unfortunately, I''m running into a browser problem. The code works perfectly in Firefox, but fails in IE. Here is the simple code: function ProcessForm() { newname = $F(''name''); newloc = $F(''location''); html = ''<tr><td>#</td><td>''+newname+''</td><td>''+newloc+''</td></tr>''; new Insertion.Bottom( ''People'', html ); } The table looks like this: <table id="People"> <tr> <td>id</td> <td>name</td> <td>location</td> </tr> <tr> <td>1</td> <td>Josh Charles</td> <td>Kansas City, MO</td> </tr> <tr> <td>2</td> <td>Tara Craven</td> <td>Kansas City, MO</td> </tr> </table> I''m sort of at a loss here. Any ideas what might be happening? Josh