Use the following functions to write text to the body of a document:
The addTableText function writes a <TABLE> tag into the web page so it must be called within the context of an HTML [assign the value for TD in your book] tag (that is, within the Results section of a web page) or outside of all table structures within the web page.
addTableText(label)
addTableText("10 users displayed");
The addText function writes a <TR> tag into the web page so it must be called within the context of an HTML <TABLE> tag (that is, within the Criteria section of a web page).
addText(label[,colspan])
addText("Enter your name here");