Opening a Web Page in a New, Specifically Sized Window
This method uses an image already on the server (or on the web somewhere) as the link to open another web page in a new window. The following code is added to an HTML snippet.
<script type="text/javascript"> function open_win() { window.open("URL OF SITE/PAGE TO BE OPENED","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=650, height=740") } </script>
<input type="image" width=80, height=92, src="URL OF IMAGE TO BE DISPLAYED" onclick="open_win()"> </body></html>
The code in red are user changeable to suit your particular design. Thanks to quaus for the code.
The page opened is a Wufoo form which fits nicely in a small window.



