Das Prinzip

1. Erzeugen eines Layers: das DIV-Tag mit ID
   * s ='<DIV STYLE="visibility:hidden"></DIV>'; // wegen Bug bei NS4
     s+='<DIV ID="obj1" STYLE="position:absolute; top:330; left:220;"> ...
   * document.writeln(s)

2. Zugriff auf das "Layer"-Objekt:
   * NS4 : layer = document.layers["obj1"]
   * IE4 : layer = document.all["obj1"]
   * NS6 : layer = document.getElementById("obj1")

3. Manipulation des Layers: zB. Positionieren
   * NS4 : layer.left       = x-Pos    layer.top = y-Pos
   * IE4 : layer.style.left = x-Pos    (ganz korrekt: pixelLeft)
   * NS6 : layer.style.left = ..

Layer in Aktion: