I use the following code to open the help file in a new window.
<SCRIPT LANGUAGE="JavaScript">
//Open a new browser window
function createWindow(cUrl,cName,cFeatures)
{ var xWin = window.open(cUrl,cName,cFeatures); }
</SCRIPT>
<INPUT TYPE="button" NAME="Help" VALUE="Help"
onClick="createWindow('Display/dsp_help.cfm','window2','width=500,height=300,scrollbars')" STYLE="Width:80">
This all works fine except that when the user tries to resize this window, they can't do it. It's a static window. How can I revise this code so that the new window that appears is resizable.
Thanks!
<SCRIPT LANGUAGE="JavaScript">
//Open a new browser window
function createWindow(cUrl,cName,cFeatures)
{ var xWin = window.open(cUrl,cName,cFeatures); }
</SCRIPT>
<INPUT TYPE="button" NAME="Help" VALUE="Help"
onClick="createWindow('Display/dsp_help.cfm','window2','width=500,height=300,scrollbars')" STYLE="Width:80">
This all works fine except that when the user tries to resize this window, they can't do it. It's a static window. How can I revise this code so that the new window that appears is resizable.
Thanks!