in reply to graphics in broswer window
<form ... target="_blank"> or <a href="..." target="_blank"> or something (button, link, etc that invokes a javascript function: <script language="javascript"> function makeWin { // you can set the dimensions,etc of the window using this. var win = window.open( ... ); } </script>
|
|---|