version 1.96, 2003/04/30 21:26:47
|
version 1.100, 2003/05/28 13:34:45
|
Line 59 var currentSymb='';
|
Line 59 var currentSymb='';
|
var reloadSymb=''; |
var reloadSymb=''; |
var currentStale=1; |
var currentStale=1; |
var menucltim; |
var menucltim; |
|
var noclient=0; |
|
|
var clockdelta=0; |
var clockdelta=0; |
|
|
Line 137 function advanceclock() {
|
Line 138 function advanceclock() {
|
setTimeout('advanceclock();',1000); |
setTimeout('advanceclock();',1000); |
} |
} |
|
|
|
function windowloaded(wname) { |
|
if (wname=='loncapaclient') { noclient=0; } |
|
} |
|
|
|
function windowunloaded(wname) { |
|
if (wname=='loncapaclient') { noclient=1;} |
|
} |
|
|
function windowcheck() { |
function windowcheck() { |
if (clientwindow==null || clientwindow.closed) { |
if (noclient || (clientwindow==null || clientwindow.closed)) { |
clientwindow=window.open("http://"+clienthost+"/",'', |
clientwindow=window.open("http://"+clienthost+"/",'', |
"height=400,width=440,"+ |
"height=400,width=440,"+ |
"scrollbars=1,toolbar=1,status=1,resizable=1,location=1,"+ |
"scrollbars=1,toolbar=1,status=1,resizable=1,location=1,menubar=1,"+ |
"left=190,top=15,screenX=190,screenY=15"); |
"left=190,top=15,screenX=190,screenY=15"); |
} |
} |
clientwindow.name='loncapaclient'; |
clientwindow.name='loncapaclient'; |
clientwindow.menuwindow=self; |
clientwindow.menuwindow=self; |
|
noclient=0; |
extenddispclose(); |
extenddispclose(); |
} |
} |
|
|
Line 278 function go(url) {
|
Line 288 function go(url) {
|
currentURL = null; |
currentURL = null; |
currentSymb= null; |
currentSymb= null; |
clientwindow.window.location.href="http://"+clienthost+url; |
clientwindow.window.location.href="http://"+clienthost+url; |
|
clientwindow.name='loncapaclient'; |
} |
} |
} |
} |
|
|