This browser isn't using the script. Please use the monolithic document instead.
 DOM-1  «  < § >   Netscape CodeStock 1999
   Utilities code
// The recursive nature of this algorithm
// reflects an essential fractal nature of
// documents.

function replaceAllText(startelem) {
  ... details later ... }

// Many operations require one to start
// from the document's body element.

function getBody()
 {
 if(navigator.appName != "Netscape") {
  resultElement = document.body;
 } else {
  resultElement =
document.getElementsByTagName("body").item(0);
 }
 return resultElement;
}

// Utility function to overwrite text nodes.
function setText(tagToSet, valueToSet) {
 tagToSet.nodeValue = valueToSet
}

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.