function maxwindow()
{
var x=screen.availwidth-10;
var y=screen.availheight-30;
var s=open("login.jsp","","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+x+",height="+y+",top=0,left=0");
if (!s)
showtxt.style.display="";
else
{
this.focus();
this.opener=null;
this.close();
s.focus();
}
}
1.在頁面onload事件中執(zhí)行該函數(shù):<body onLoad="maxwindow();">
2.把本網(wǎng)站地址加入客戶端的信任網(wǎng)站域。

]]>