Rob
Presumably you mean Netscape 4.x- the problem is that NN4 interprets each
DIV as its own document, thus, in order to execute script from the "main"
document, you have to call the sub-document specifically:
document[divname].whatever
Likewise, if you're already in a DIV and executing script, you have to go
"above" to the main document:
window.document[divname].etc.
-Matt