Re: [PHP] Resize the pop-up window

2001-01-29 Thread david klein
height=500'); } A HREF="http://www.intc.com" target="target_win", onclick="openWindow('http://www.intc.com')" Intel /A Thanks again, David From: Joseph Koenig [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: david klein [EMAIL PROTECTED] Subject: Re: [PHP] Resize the

Re: [PHP] Resize the pop-up window

2001-01-29 Thread Chris Hayes
I have a link, which will pop up a new window, but the problem is: I don't know how to resize the new popped-up window. My code is like this: A HREF="www.intc.com" target="_blank" intel connection /A * for 3.0+ browsers open a window with javascript (see www.irt.org window FAQ's) and

RE: [PHP] Resize the pop-up window

2001-01-29 Thread Maxim Maletsky
Here's an example from some of my old code: snip SCRIPT LANGUAGE="JavaScript" !-- function newWindow(file,window) { msgWindow=open(file,window,'resizable=yes,scrollbars=1,width=900,height=550, screenX=100,screenY=100,top=25,left=25'); if (msgWindow.opener == null) msgWindow.opener = self;