[Javascript] Re: Pop up windows with secure URL's

OfficeMgr OfficeMgr at NetVA.com
Thu Oct 10 17:45:54 CDT 2002


Ah, I see the problem now.  I had everything right, but I always check in IE
5.0 first then in Netscape 4.08.  Basically the problem is due to the
location of the secure icon in IE5 vs Netscape.

The icon shows in Netscape because it is in the main toolbar.  It DOES NOT
show in IE5 because it is located at the bottom of the window in an
additional bar(?).

Is there any other way of displaying security information in a pop up window
in IE5?

Thanks,
Brent


----- Original Message -----
From: <Esther_Strom at hmco.com>
To: <javascript at LaTech.edu>
Cc: <OfficeMgr at NetVA.com>
Sent: Thursday, October 10, 2002 1:54 PM
Subject: Re: [Javascript] Pop up windows with secure URL's


>
> Use a window.open function that passes options:
>
> function openWin2(url,winName,height,width,options){
>     var winHeight = parseInt(height);
>     var winWidth = parseInt(width) + 15;
>       file://var winOptions =
"location=no,toolbar=no,menubar=yes,resizable=yes"
>       var winOptions = "location=yes,toolbar=no,menubar=yes,resizable=yes"
>     popupWin = window.open(url,winName,'width=' + winWidth + ',height='
> + winHeight +','+winOptions);
> }
>
>
> Call it like this:
>
> <a href="javascript:openWin2('test2.htm','myWin',300,400);">Click</a>
>
> From what I've seen, this works in 4+ versions of Netscape. Not sure about
> IE.
> |------------------------------|
> | E S T H E R  S T R O M, CLPP |
> | Notes Application Development|
> | McDougal Littell             |
> | 909 Davis Street             |
> | Evanston, IL 60201 USA       |
> | w: 847.424.3209              |
> | e: esther_strom at hmco.com     |
> |------------------------------|





More information about the Javascript mailing list