open() (Method)

An alias for the window.open() method.

Availability:

JavaScript - 1.0
JScript - 1.0
Internet Explorer - 3.02
Netscape - 2.0
Opera - 3.0
Property/method value type:Window object
JavaScript syntax:-myWindow.open()
-myWindow.open(aURL)
-myWindow.open(aURL, aName)
-myWindow.open(aURL, aName, aFeatureList)
-myWindow.open(aURL, aName, aFeatureList, aFlag)
-open()
-open(aURL)
-open(aURL, aName)
-open(aURL, aName, aFeatureList)
-open(aURL, aName, aFeatureList, aFlag)
Argument list:aFeatureListA list of attributes for the new window
aFlagA flag to indicate how the history list is to be modified
aNameThe name of a new or existing target window
aURLA URL to load into the window

Refer to:

Window.open()