Hallo Michael
An dem Teil deines Codes, kann man es nicht nachvollziehen.
Gibts die ganze Datei irgendwo zum Testen?
Das Beispiel tut mit NN ohne Probs.
<HTML>
<HEAD>
<SCRIPT>
function con(obj)
{
alert(obj)
this.obj = obj;
this.func = func;
}
function func()
{
alert(this.obj);
}
function test()
{
a = new con(document.lay);
a.func();
}
</SCRIPT>
</HTML>
<BODY>
<A href="javascript:test()">test</A>
<LAYER name="lay" top=100 left=0>
text text text
</LAYER>
</BODY>
</HTML>
Tschüs
Daniel