Diff for /loncom/html/res/adm/pages/menu.html between versions 1.20 and 1.23

version 1.20, 2001/02/21 17:22:01 version 1.23, 2001/03/21 15:56:57
Line 8  Sept Ben Tyszka Line 8  Sept Ben Tyszka
 Jan Guy Albertelli  Jan Guy Albertelli
 5/1/1 Gerd Kortemeyer  5/1/1 Gerd Kortemeyer
 2/19 Guy Albertelli  2/19 Guy Albertelli
   3/21 Gerd Kortemeyer
 -->  -->
 <head>  <head>
 <title>LON-CAPA Remote</title>  <title>LON-CAPA Remote</title>
 </head>  </head>
   
   
 <body bgcolor="#BBBBBB" background="remotebg.gif" onUnload="logout();">  <body bgcolor="#BBBBBB" 
         background="remotebg.gif"
         onLoad="activate();" 
         onUnload="logout();">
 <basefont size="1" />  <basefont size="1" />
   
 <script type="text/javascript">  <script type="text/javascript">
 <!--  <!--
 statustop='';  statustop='';
 statusbot='';  statusbot='';
   active=0;
   
 clienthost=window.location.host;  clienthost=window.location.host;
 clientwindow=opener;  clientwindow=opener;
Line 40  function logout () { Line 45  function logout () {
    }     }
 }  }
   
   function activate () {
      setTimeout('active=1;',2000);
   }
   
   function deactivate () {
      active=0;
   }
   
 function display(utext,ltext) {  function display(utext,ltext) {
    var i; var ch;    var i; var ch;
    this.window.focus();    this.window.focus();
     if (active) { 
    for (i=0;i<=7;i++) {     for (i=0;i<=7;i++) {
       if (i<utext.length) {        if (i<utext.length) {
          ch=utext.charAt(i);           ch=utext.charAt(i);
Line 59  function display(utext,ltext) { Line 73  function display(utext,ltext) {
       } else { ch='space'; }        } else { ch='space'; }
       this.document['j'+i].src=ch+'.gif';        this.document['j'+i].src=ch+'.gif';
    }     }
     }
 }  }
   
 function defdis() {  function defdis() {
Line 119  function catalog_info() { Line 134  function catalog_info() {
    go('');     go('');
    window.open(clientwindow.window.location.href+'.meta',"LONcatInfo");     window.open(clientwindow.window.location.href+'.meta',"LONcatInfo");
 }  }
 //-->  // -->
 </script>  </script>
   
 <center>  <center>

Removed from v.1.20  
changed lines
  Added in v.1.23


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>