HTMLTableSectionElement body = (HTMLTableSectionElement)htmlDoc.createElement( "TBODY" );
HTMLTableRowElement row = (HTMLTableRowElement)htmlDoc.createElement( "TR" );
HTMLTableCellElement cell = (HTMLTableCellElement)htmlDoc.createElement( "TD" );
table.appendChild( text );
table.appendChild( body );
body.appendChild( row );
body.appendChild( text.cloneNode( true ) );
row.appendChild( text.cloneNode( true ) );
row.appendChild( cell );
row.appendChild( text.cloneNode( true ) );
cell.appendChild( text.cloneNode( true ) );