Hallo,
Da lässt sich die Datei/Link auch nicht öffnen!
Dann kann der Fehler wohl nur noch in der Funktion nwr() liegen, deren Quelltext wir noch nicht kennen (oder ist es eine JS-interne Funktion? Glaube nicht).
Gruß;
function nwr(x,w,h,pl,pt,n)
{
if (!h || h == "") h = 100;
if (!w || w == "") w = 100;
if (!pl || pl == "") pl = 10;
if (!pt || pt == "") pt = 10;
if (!n || n == "") n = "extraFenster";
var xx = "top=1,left="+pl+",top="+pt+",toolbar=0,width="+w+ ",height="+h+" ,directories=0,status=0,scrollbars=1,resizable=1,toolbar=0,menubar=0";
wnd=window.open(x,n,xx);
wnd.focus();
}