代码如下:
/**
 * 禁用IE工具栏、导航栏
 * site www.jb200.com
*/function OnOpenWin() {
 if (window.name != "OAopenWindow") {
     win = window.open("login.aspx", "OAopenWindow", "toolbar=no, menubar=no, scrollbars=no, resizable=yes,location=no,status=no,width=" + (screen.width - 5) + ",height=" + (screen.height - 38) + ",top=0,left=0");
     if (win != null) {
         window.opener = null; window.open('', '_self', ''); window.close();
     }
     //     else{
     //         document.all('div_msg').style.display='block';
     //     }
 }
 else {
     window.moveTo(-3, -3);
     setTimeout("self.focus()", 500);