Re: Opening a Form in a New Window - Help!

2005-05-20 Thread David Johnson
hey there What meant was that I wanted to open a new browser that had these options set: window.height=400; window.width=300; window.status=yes; window.toolbar=no; window.menubar=no; window.location=no; so that it isnt just another same size browser with tiny help text in it. On

Opening a Form in a New Window - Help!

2005-05-19 Thread David Johnson
Hi there I'm trying to open up a new window from my struts application which will contain help information. The link opening the window looks like this so far html:link action=help.do http://help.do target=_helpHelp/html:link What I'd like to do is specify the following options

Re: Opening a Form in a New Window - Help!

2005-05-19 Thread Frank W. Zammetti
Hello, In order to set those options you will have to use Javascript. The target attribute is a fairly dumb animal in that it just opens said target with the location you specify. Anything more requires scripting. I wasn't clear on what you meant by: Does anyone know how I might specify these