--- loncom/html/res/adm/pages/menu.html 2000/10/02 18:51:53 1.6
+++ loncom/html/res/adm/pages/menu.html 2000/10/03 20:31:48 1.8
@@ -4,7 +4,7 @@ The LearningOnline Network with CAPA
Remote Control
6/12/00,6/13,6/14,6/15 Gerd Kortemeyer
Sept Ben Tyszka
-10/2 Gerd Kortemeyer
+10/2,10/3 Gerd Kortemeyer
-->
LON-CAPA Remote
@@ -25,6 +25,7 @@ function windowcheck() {
if (clientwindow.closed) {
clientwindow=window.open("http://"+clienthost+"/");
}
+ clientwindow.name='loncapaclient';
}
function logout () {
@@ -68,7 +69,18 @@ function setstatus(tp,bt) {
function go(url) {
this.document['led'].src="ledsend.gif";
if (url!='') {
- clientwindow.window.location.href="http://"+clienthost+url;
+ windowcheck();
+ clientwindow.window.location.href="http://"+clienthost+url;
+ }
+}
+
+function gopost(url,postdata) {
+ this.document['led'].src="ledsend.gif";
+ if (url!='') {
+ windowcheck();
+ this.document.server.action="http://"+clienthost+url;
+ this.document.server.postdata.value=postdata;
+ this.document.server.submit();
}
}
@@ -219,19 +231,23 @@ function edit_bookmarks() {
-
+