Hallo me!
window.open("test.htm","blabla","height=screen.height,width=screen.width");
window.open("test.htm","blabla","height="+screen.height+",width="+screen.width);
noch so:
var h=screen.height;
var w=screen.width;
window.open("test.htm","blabla","height=h,width=w");
window.open("test.htm","blabla","height="+h+",width="+w);
Gruss,
Carsten