window.open("001.aspx","","width=100,height=100,menubar=no,location=no,toolbar=no")<SCRIPT LANGUAGE="javascript"> 
<!-- 
window.open ('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no,resizable=no,location=no, status=no') 
//写成一行 
--> 
</SCRIPT> 参数解释: <SCRIPT LANGUAGE="javascript"> js脚本开始; 
window.open 弹出新窗口的命令; 
'page.html' 弹出窗口的文件名; 
'newwindow' 弹出窗口的名字(不是文件名),非必须,可用空''代替; 
height=100 窗口高度; 
width=400 窗口宽度; 
top=0 窗口距离屏幕上方的象素值; 
left=0 窗口距离屏幕左侧的象素值; 
toolbar=no 是否显示工具栏,yes为显示; 
menubar,scrollbars 表示菜单栏和滚动栏。 
resizable=no 是否允许改变窗口大小,yes为允许; 
location=no 是否显示地址栏,yes为允许; 
status=no 是否显示状态栏内的信息(通常是文件已经打开),yes为允许; 
</SCRIPT> js脚本结束 

解决方案 »

  1.   

    在本页head中加入下面代码
    <script>
    var k=(window.screen.availWidth-550)/2
             var g=(window.screen.availHeight-500)/2
    //第一个值是宽度 第二个值是高度
    window.moveTo(k,g);
    window.resizeTo(550,500);
    </script>在body中写设置脚本toolbar=no  location=no 等
      

  2.   

    window.open("001.aspx","toolbar=no,status=no")
      

  3.   

    Attribute      Value         Descriptiontoolbar        Boolean       “Back,” “Forward,” and other buttons in the row
    location       Boolean        Field displaying the current URL
    directories    Boolean       “What’s New” and other buttons in the row
    status         Boolean       Statusbar at bottom of window
    menubar        Boolean       Menubar at top of window
    scrollbars     Boolean       Displays scrollbars if document is larger than window
    resizable      Boolean       Interface elements that allow resizing by dragging
    copyhistory    Boolean       Duplicates Go menu history for new window
    width          pixelCount    Window outer width in pixels
    height         pixelCount    Window outer height in pixels
    alwaysLowered  Boolean       Always behind other browser windows
    alwaysRaised   Boolean       Always in front of other browser windows
    dependent      Boolean       Subwindow closes if the opener window closes
    hotkeys        Boolean       If true, disables menu shortcuts (except Quit and
                                 Security Info) when menubar is turned off
    innerHeight   pixelCount     Content region height; same as old height property
    innerWidth    pixelCount     Content region width; same as old width property
    outerHeight   pixelCount     Visible window height
    outerWidth    pixelCount     Visible window width
    screenX       pixelCount     Horizontal position of top-left corner on screen
    screenY       pixelCount     Vertical position of top-left corner on screen
    titlebar      Boolean        Title bar and all other border elements
    z-lock        Boolean        Window layer is fixed below browser windows
    **************************************************************************i think u can understand . and pay attention that some of them are included in the
    netscape, some of them are included in the IE
    good luck