Hallo Malte,
var strAttrib = 'dependent,alwaysRaised,width=400,height=150,screenX=150,screenY=250,top=150,left=180,scrollbars=0,menubar=0'
zu
var strAttrib = 'dependent,alwaysRaised,screenX=150,screenY=250,top=150,left=180,scrollbars=0,menubar=0'
»»function OpenWindow(strURL)
zu function OpenWindow(strURL,hoehe,weite)
w1 = window.open(strURL, 'msgWin1',strAttrib);
zu
var x=strAttrib + ",width=" + weite + ",height="+hoehe;
w1 = window.open(strURL, 'msgWin1',x);
aendern (entsprechend fuer die anderen Stellen im Script).
Gruß Ralf