Click to See Complete Forum and Search --> : please help! simple problem!


artane
October 1st, 2004, 02:56 PM
I'm using this function to pop up a window. The problem is, I want the window to show that the page is secure by displaying that little lock at the bottom right.

As it is now, the window does not show the gray bar at the bottom (where the lock is).

I've changed some of the settings to "yes" but, nonthing seems to have any affect.

How can I make this work?

Thanks very much,

artane



<!--
if(screen){
topPos=0;
leftPos=0;
}
function getPage(thePage,wt,ht){
leftPos= (screen.width-wt)/2;
topPos = (screen.height-ht)/2;
newWin1 = window.open(thePage,'aWin','toolbars=no,resizeable=no,scrollbars=yes,left='+leftPos+',top='+topPos+',width='+wt+',height='+ht);
}
// -->

PallaviDalvi
October 4th, 2004, 04:33 AM
HI artane,
Am not sure i understood u correctly... acc to me the 'lock' symbol u mention cannot be displayed just by setting a few options in the openwindow(). u have to make ur page secure by using SSL or something(am not aware of exactly how it is done).
but if u mean the status bar...then u need to say status=yes in the options for window.open.
i also noticed that there is a typo.... resizeable is wrongly spelt it shud be resizable.

Vanny
October 14th, 2004, 01:03 AM
Correct,

To get the actual lock you need a secure site, you will need to buy a secure license from a company like thawte.com cost is about $200US/year, but all depends on type and who you buy from. I think you can make your own but they arent as good.

I just renewed mine. Depending on the what system you use, it can be easy to hard.

artane
October 14th, 2004, 09:11 AM
hi guys,

Turns out all I had to do was put "status=no" in the script. I thought I tried this but I had put "statusbar=no".

Thanks PallaviDalvi for the solution.

artane