Hi Leghorn8,
You can use the simple way that Lisa explained with (target ="_blank") in the HTML code or alternatively you can use
javascript which will be much more versatile, because you can specify the following:
Window Attributes
Below is a list of the attributes you can use:
- width=300
- height=200
- resizable=yes or no
- scrollbars=yes or no
- toolbar=yes or no
- location=yes or no
- directories=yes or no
- status=yes or no
- menubar=yes or no
Example:
<FORM>
<INPUT type="button" value="This is a New Window!" onClick="window.open('http://www.#####.html','testwindow','width=400,height=200 ')">
</FORM>