You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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>
|
|
|