--- loncom/html/res/adm/pages/menu.html 2003/05/23 13:56:39 1.97 +++ loncom/html/res/adm/pages/menu.html 2003/05/24 12:43:54 1.99 @@ -4,7 +4,7 @@ The LearningOnline Network with CAPA Remote Control // -// $Id: menu.html,v 1.97 2003/05/23 13:56:39 www Exp $ +// $Id: menu.html,v 1.99 2003/05/24 12:43:54 www Exp $ // // Copyright Michigan State University Board of Trustees // @@ -59,7 +59,7 @@ var currentSymb=''; var reloadSymb=''; var currentStale=1; var menucltim; -var noclient=1; +var noclient=0; var clockdelta=0; @@ -138,6 +138,14 @@ function advanceclock() { setTimeout('advanceclock();',1000); } +function windowloaded(wname) { + if (wname=='loncapaclient') { noclient=0; } +} + +function windowunloaded(wname) { + if (wname=='loncapaclient') { noclient=1;} +} + function windowcheck() { if (noclient || (clientwindow==null || clientwindow.closed)) { clientwindow=window.open("http://"+clienthost+"/",'', @@ -280,6 +288,7 @@ function go(url) { currentURL = null; currentSymb= null; clientwindow.window.location.href="http://"+clienthost+url; + clientwindow.name='loncapaclient'; } }