One method for doing it is with Javascript's window.open() method.
Here's an example pulled from javascript - coder . com:
The following code opens a window with menu bar. The window is resizable and is having 350 pixels width and 250 pixels height.
window.open ("YOUR_URL_HERE",
"mywindow","menubar=1,resizable=1,width=350,height =250");
Comment