--- loncom/html/res/adm/pages/menu.html 2003/05/28 13:34:45 1.100
+++ loncom/html/res/adm/pages/menu.html 2003/06/06 00:42:14 1.101
@@ -4,7 +4,7 @@ The LearningOnline Network with CAPA
Remote Control
//
-// $Id: menu.html,v 1.100 2003/05/28 13:34:45 www Exp $
+// $Id: menu.html,v 1.101 2003/06/06 00:42:14 www Exp $
//
// Copyright Michigan State University Board of Trustees
//
@@ -184,7 +184,7 @@ function logout () {
lonchat.close();
}
if (autologout) {
- clientwindow.window.location.href="http://"+clienthost+"/adm/logout";
+ go("/adm/logout");
}
}
@@ -285,10 +285,14 @@ function go(url) {
statuslocked=0;
this.document['led'].src="http://"+clienthost+imgpath+"ledsend.gif";
if (url!='' && url!= null) {
- currentURL = null;
- currentSymb= null;
- clientwindow.window.location.href="http://"+clienthost+url;
- clientwindow.name='loncapaclient';
+ currentURL = null;
+ currentSymb= null;
+ this.document.server.action="http://"+clienthost+url;
+ this.document.server.postdata.value='';
+ this.document.server.command.value='';
+ this.document.server.url.value='';
+ this.document.server.postsymb.value='';
+ this.document.server.submit();
}
}