I am building a survey box for my website and it opens up in a separate window for the rest of my site... how can i make it so that it opens as a small window and not a full size view? I want it to be like a pop-up... Thanks guys!
In the <head> section <script> function changeScreenSize(w,h) { window.resizeTo( w,h ) } </script> In the body section of the popup, you could put <body onload="changeScreenSize(500,300)"> 500 and 300 can be replaced by whatever width and height you want