This browser isn't using the script. Please use the monolithic document instead.
 DOM-1  «  < § >   Netscape CodeStock 1999
   Table creation code
function createView(bodyelement, themodel) {
 table = document.createElement("TABLE")
 table.border = 1
 table.id = "viewtable"
 tablebody = document.createElement("TBODY")
 for(var i=0; i < model.length; i++)
  {
   currentRow = document.createElement("TR")
   currentCell = document.createElement("TD")
   currentCell.appendChild(document.createTextNode(model[i]))
   currentRow.appendChild(currentCell)
   tablebody.appendChild(currentRow)
  }
 table.appendChild(tablebody)
 bodyelement.appendChild(table)
 return table
}

Copyright © 1999 General Picture ™. Permission granted to reproduce in whole or part without charge as long as http://www.generalpicture.com is cited as source.