When logout button is pressed logout is made 5 or 6 times
The problem is located in TOC.pl file, logOut() function from JavaScritp code :
function logOut() {
wins=new Array('fol','srch','u_info','comp','drive','addr','newwin');
for (var i=0;i<wins.length;i++) {
eval ('var '+wins[i]);
}
thiswin = eval (wins[i]);
if (thiswin != null && !thiswin.closed){
thiswin.close();
This implementation gets a non-so-cute effect (6 warning messages) when the alert for non-encripted information sending is activated in the browser.
The resolution is left to later stage.
Anonymous
You seem to have CSS turned off. Please don't fill out this field.
Logged In: YES user_id=23237
The problem is located in TOC.pl file, logOut() function from JavaScritp code :
function logOut() {
wins=new Array('fol','srch','u_info','comp','drive','addr','newwin');
for (var i=0;i<wins.length;i++) {
eval ('var '+wins[i]);
}
for (var i=0;i<wins.length;i++) {
thiswin = eval (wins[i]);
if (thiswin != null && !thiswin.closed){
thiswin.close();
}
This implementation gets a non-so-cute effect (6 warning messages) when the alert for non-encripted information sending is activated in the browser.
The resolution is left to later stage.
Logged In: YES
user_id=23237