to reproduce, create a new DynLayer with an inline layer:
myLayer = new DynLayer
('box',0,0,100,100,'white',null,null,null,'<div id=innerbox
style="position:absolute">foo</div>');
now when you try to write to the innerbox layer you get
a javascript error:
DynAPI.document.all['innerbox'].setHTML('bar');
not sure if this is a bug or by design, or if i'm not getting
the syntax correct, but i think any layer created directly
or indirectly should be accessible to the user using
standard API calls.