日期:2014-05-16 浏览次数:20659 次
<html>
<head>
</head>
<script type="text/javascript">
function init_window(){
var x=screen.availWidth-10;
var y=screen.availHeight-25;
window.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");
window.opener = null;
window.open("", "_self");
window.close();
//window.open("login.jsp","","height=window.screen.height, width=window.screen.width, top=0,left=0, menubar=0,toolbar=0,directories=0,location=0, status=0,scrollbars=0")
}
</script>
<body onload="init_window();">
</body>
</html>