11 lines
306 B
11 lines
306 B
<script>
|
|
var openWidth = (screen.availWidth-10);
|
|
var openHeight = (screen.availHeight-50);
|
|
window.open ("login.jsp", "sjjxc",
|
|
"menubar=no,status=yes,resizable=yes,scrollbars=no,toolbar=no,top=0,left=0,width="
|
|
+ openWidth + ",height=" +openHeight);
|
|
window.opener = null;
|
|
window.close();
|
|
</script>
|
|
|