| open() This method is used to open a new window. The HTML file or content to be used for the page may be stated, as well as a host of other parameters, which are listed below: alwaysLowered - This value will cause the opened window to be always behind all other windows. alwaysRaised - This value will cause the opened window to be always on top of all other windows. copyHistory - This value will copy the history from the parent window into the opened window. dependant - This value will cause the opened window to close when the parent window closes. directories - This value wil cause the opened window to have the directory buttins displayed. height - This value specifies the window height, in pixels. hotkeys - This value will disable keyboard shortcut keys such as alt+arrow to go forward or reverse in the window history. innerheight - This value specifies the height of the inner portions of the window, measured in pixels. left - This value will cause the opened window to be offset from the left edge of the screen. location - This value will cause the location bar to be displayed at the top of the window. menubar - This value will cause the menubar to be displayed at the top of the opened window. outerheight - This value is use to specify the height of the outer edges of the opened window. outerWidth - This value is used to specify the width of the outer edges of the opened window. resizable - This value specifes whether or not the opened window may be resized by dragging the edges with the mouse. screenX - This value specifies the X-Axis amount that the opened window will be offset from the edge of the screen. screenY - This value specifies the Y-Axis amount that the opened window will be offset from the edge of the screen. scrollbars - This value causes scrollbars to be displayed if the content is too large for the opened window's size. status - This value causes the status bar to be displayed at the bottom of the opened window. titlebar - This value causes the title bar to be displayed at the top of the opened window. top - This value is used to offset the opened window from the top of the screen. width - This value specifies the width, in pixels, of the opened window.
z-Lock - This value, when used, displayes the opende window below all other currently open windows. syntax: open (URL, windowName [window options]) This method is used with the following: document window
|