you can use the
window.open('yourlocation.htm', 'New window name', 'fullscreen=1');
NOTE THAT fullscreen is ONLY supported in I.E. browser. Not recommended to use since it is browser dependent.
Function Specification
the format of window.open() is
window.open (URL, windowName[, windowFeatures])
URL is the URL page you trying to open
windowName is the name given to this window
Windowfeatures is the additional parameter you would like this window to have
- status -status bar at the bottom of
the window. e.g. "status=1"
- toolbar -standard browser toolbar,
with Back and Forward button etc.
e.g. "toolbar=0" mean no toolbar
location
- Location entry field where
you enter the URL. e.g. "location=0"
- menubar -menu bar of the window e.g.
"menubar=1"
- directories -The standard
browser directory buttons e.g.
"directories=1"
- resizable
-Allow/Disallow the user to resize the window. e.g. "resizble=0"
- scrollbars -Enable the scrollbars if
the document is bigger than the
window e.g. "scrollbars=1"
- height -Specifies the height of the
window in pixels
- width -Specifies the
width of the window in pixels.