

function newWindow(theURL,winName,theStyle) {
  window.open(theURL,winName,theStyle);
}

/*
Name Type Description Example

width number Width, not including chrome (in pixels) width=640

height number Height, not including chrome (in pixels) height=480

left number Horizontal position wrt. screen (pixels) left=0

top number Vertical position wrt. screen (pixels) top=0

titlebar boolean Window has titlebar titlebar=no

menubar boolean Window has menubar menubar=yes

toolbar boolean Window has toolbar (e.g., back button) toolbar=yes

location boolean Window has location bar location=no

scrollbars boolean Window has scrollbars scrollbars=yes

status boolean Window has statusbar status=yes

resizable boolean Window can be resized resizable=no

*/
