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 5/

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

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

2005-05-19 Thread David Johnson
I got it. My link is as follows: Help which calls the following: function openHelpWindow(){ var helpWindow = window.open("","_help", "height=300,width=450,status=yes,toolbar=no,menubar=no,location=no"); helpWindow.location = "./help.action"; } On 5/19/05, David Johnson <[EMAIL PROTECTED]>

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 http://help.do>" target="_help">Help What I'd like to do is specify the following options window.height=400; window.width=300; windo