Diff for /loncom/html/res/adm/pages/menu.html between versions 1.35 and 1.77

version 1.35, 2001/06/15 22:25:10 version 1.77, 2002/11/13 16:55:29
Line 2 Line 2
 <!--  <!--
 The LearningOnline Network with CAPA  The LearningOnline Network with CAPA
 Remote Control  Remote Control
 6/12/00,6/13,6/14,6/15 Gerd Kortemeyer  
 Sept Ben Tyszka  //
 10/2,10/3,10/4,10/17,10/19,3/1/1 Gerd Kortemeyer  // $Id$
 Jan Guy Albertelli  //
 5/1/1 Gerd Kortemeyer  // Copyright Michigan State University Board of Trustees
 2/19 Guy Albertelli  //
 3/21 Gerd Kortemeyer  // This file is part of the LearningOnline Network with CAPA (LON-CAPA).
 4/30 Ben Tyszka  //
 5/2 Scott Harrison  // LON-CAPA is free software; you can redistribute it and/or modify
 5/4,5/9,5/28,5/30,6/1,6/2,6/3,6/8 Gerd Kortemeyer  // it under the terms of the GNU General Public License as published by
   // the Free Software Foundation; either version 2 of the License, or
   // (at your option) any later version.
   //
   // LON-CAPA is distributed in the hope that it will be useful,
   // but WITHOUT ANY WARRANTY; without even the implied warranty of
   // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   // GNU General Public License for more details.
   //
   // You should have received a copy of the GNU General Public License
   // along with LON-CAPA; if not, write to the Free Software
   // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   //
   // /home/httpd/html/adm/gpl.txt
   //
   // http://www.lon-capa.org/
   //
   
 -->  -->
 <head>  <head>
 <title>LON-CAPA Remote</title>  <title>LON-CAPA Remote</title>
 </head>  </head>
   
   
 <body bgcolor="#BBBBBB"   <body bgcolor="#BBBBBB" 
       background="remotebg.gif"        background="remotebg.gif"
       onLoad="activate();"         onUnload="logout();"
       onUnload="logout();">        >
 <basefont size="1" />  <font size="1">
   
 <script type="text/javascript">  <script type="text/javascript">
 <!--  <!--
 statustop='';  var statustop = '';
 statusbot='';  var statusbot = '';
 active=0;  var active = 0;
   var dislocked = 1;
 imgpath='/res/adm/pages/';  var statuslocked = 0;
   
   var imgpath=':8080/res/adm/pages/';
   var fontpath=':8080/adm/lonLCDfont/';
 var currentURL='';  var currentURL='';
   var reloadURL='';
   var currentSymb='';
   var reloadSymb='';
 var currentStale=1;  var currentStale=1;
 var menucltim;  var menucltim;
   
   var clockdelta=0;
   
   var w_extdisp_flag=-1;
   var extdisp;
   
 // not used (yet)  // not used (yet)
 // var w_Annotator;  // var w_Annotator;
 // var w_bmquery;  // var w_bmquery;
Line 52  var w_LONcatInfo_flag=-1; Line 77  var w_LONcatInfo_flag=-1;
  // -1 means never yet opened/defined   // -1 means never yet opened/defined
 ///////////////////////////////////////  ///////////////////////////////////////
   
 hr=new Array;  var hr = new Array;
 db=new Array;  var db = new Array;
 dt=new Array;  var dt = new Array;
   var ds = new Array;
   
   for (var i=1;i<=3;i++) {
      for (var j=1;j<=10;j++) {
         var index = 10*j+i;
         hr[index]='';
         db[index]='';
         dt[index]='';
         ds[index]='';
      }
   }
   
   var clienthost=window.location.host;
   var clientwindow=opener;
   
 clienthost=window.location.host;  function syncclock(servertime) {
 clientwindow=opener;      var clientclock=new Date;
       clockdelta=servertime-clientclock.getTime();
   }
   
   function advanceclock() {
       var clock=new Date();
       clock.setTime(clock.getTime()+clockdelta);
       if (!statuslocked) {
          var days=""+clock.getDate();
          if (days.length<2) { days="0"+days; }
          var mons=""+(clock.getMonth()+1);
          if (mons.length<2) { mons="0"+mons; }
          var years=""+clock.getYear();
   
          if (years>1000) {
             years=years.substring(2,4);
          } else {
             years=years.substring(1,3);
          }
          statustop=mons+'/'+days+'/'+years;
   
          var secs=""+clock.getSeconds();
          if (secs.length<2) { secs="0"+secs; }
          var mins=""+clock.getMinutes();
          if (mins.length<2) { mins="0"+mins; }
          var hours=""+clock.getHours();
          if (hours.length<2) { hours=" "+hours; }
          statusbot=hours+':'+mins+':'+secs;
   
          if (!dislocked) { showdisplay(); }
       }
       setTimeout('advanceclock();',1000);
   }
   
 function windowcheck() {  function windowcheck() {
    if (clientwindow.closed) {     if (clientwindow==null || clientwindow.closed) {
       clientwindow=window.open("http://"+clienthost+"/");         clientwindow=window.open("http://"+clienthost+"/",'',
         "height=400,width=440,"+
         "scrollbars=1,toolbar=1,status=1,resizable=1,location=1,"+
         "left=190,top=15,screenX=190,screenY=15"); 
    }     }
    clientwindow.name='loncapaclient';     clientwindow.name='loncapaclient';
      clientwindow.menuwindow=self;
      extenddispclose();
 }  }
   
 function logout () {  function logout () {
    windowcheck();     windowcheck();
    if (clientwindow.status!='MenuControl:nologout')  
    {     
       if (w_Annotator_flag!=-1 && annotator && !annotator.closed) {        if (w_Annotator_flag!=-1 && annotator && !annotator.closed) {
           annotator.close();            annotator.close();
       }        }
Line 83  function logout () { Line 158  function logout () {
           loncatinfo.close();            loncatinfo.close();
       }        }
       clientwindow.window.location.href="http://"+clienthost+"/adm/logout";        clientwindow.window.location.href="http://"+clienthost+"/adm/logout";
    }  
 }  }
   
 function activate () {  function activate () {
    opener.menuloaded=1;     opener.menuloaded=1;
    setTimeout('active=1;',2000);     setTimeout('active=1;',2000);
      advanceclock();
 }  }
   
 function deactivate () {  function deactivate () {
Line 96  function deactivate () { Line 172  function deactivate () {
 }  }
   
 function display(utext,ltext) {  function display(utext,ltext) {
       this.window.focus();
       showdisplay(utext,ltext);
   }
   
   function showdisplay(utext,ltext) {
   var i; var ch;    var i; var ch;
   this.window.focus();    dislocked=1;
   if (utext==undefined) { utext=''; }    if (utext == null) { utext = '';}
   if (ltext==undefined) { ltext=''; }    if (ltext == null) { ltext = '';}
     if (typeof(utext)!="string") { utext=''; }
     if (typeof(ltext)!="string") { ltext=''; }
   if ((utext=='') && (ltext=='')) {    if ((utext=='') && (ltext=='')) {
      utext=statustop;       utext=statustop;
      ltext=statusbot;       ltext=statusbot;
        dislocked=0;
   }    }
   if (active) {     if (active) { 
    for (i=0;i<=7;i++) {     for (i=0;i<=7;i++) {
Line 110  function display(utext,ltext) { Line 194  function display(utext,ltext) {
          ch=utext.charAt(i);           ch=utext.charAt(i);
          if (ch==' ') { ch='space'; }           if (ch==' ') { ch='space'; }
          if (ch=='-') { ch='hyphen'; }           if (ch=='-') { ch='hyphen'; }
            if (ch==':') { ch='colon'; }
            if (ch=='/') { ch='slash'; }
       } else { ch='space'; }        } else { ch='space'; }
       this.document['i'+i].src=imgpath+ch+'.gif';        this.document['i'+i].src="http://"+clienthost+fontpath+ch+'.gif';
    }     }
    for (i=0;i<=7;i++) {     for (i=0;i<=7;i++) {
       if (i<ltext.length) {        if (i<ltext.length) {
          ch=ltext.charAt(i);           ch=ltext.charAt(i);
          if (ch==' ') { ch='space'; }           if (ch==' ') { ch='space'; }
          if (ch=='-') { ch='hyphen'; }           if (ch=='-') { ch='hyphen'; }
            if (ch==':') { ch='colon'; }
            if (ch=='/') { ch='slash'; }
       } else { ch='space'; }        } else { ch='space'; }
       this.document['j'+i].src=imgpath+ch+'.gif';        this.document['j'+i].src="http://"+clienthost+fontpath+ch+'.gif';
    }     }
   }    }
 }  }
   
 function defdis() {  function defdis() {
    this.window.focus();     this.window.focus();
    display(statustop,statusbot);     display();
 }  }
   
 function switchbutton(row,col,imgsrc,texttop,textbot,action) {  function switchbutton(row,col,imgsrc,texttop,textbot,action,desc) {
    var idx=10*row+col;     var idx=10*row+col;
    this.document['b'+idx].src=imgpath+imgsrc;     this.document['b'+idx].src="http://"+clienthost+imgpath+imgsrc;
    hr[idx]=action;     hr[idx]=action;
    dt[idx]=texttop;     dt[idx]=texttop;
    db[idx]=textbot;     db[idx]=textbot;
 }     ds[idx]=desc;
   } 
   
 function clearbut(row,col) {  function clearbut(row,col) {
    var idx=10*row+col;     var idx=10*row+col;
    this.document['b'+idx].src=imgpath+'empty.gif';     this.document['b'+idx].src="http://"+clienthost+imgpath+'empty.gif';
    hr[idx]='javascript:defdis();';     hr[idx]='javascript:defdis();';
    dt[idx]='';     dt[idx]='';
    db[idx]='';     db[idx]='';
      ds[idx]='';
 }  }
   
 function setstatus(tp,bt) {  function setstatus(tp,bt) {
    this.document['led'].src="ledblink.gif";     this.document['led'].src="http://"+clienthost+imgpath+"ledblink.gif";
    statustop=tp;     statustop=tp;
    statusbot=bt;     statusbot=bt;
      statuslocked=1;
    defdis();     defdis();
    endsend();  }
   
   function is_editable_resource (url) {
   // figure out if this a specific resource version
      var Chunks = url.split('.');
      var tmp = Chunks[Chunks.length-1];
      if ((Chunks.length > 1) && (Math.floor(tmp) == tmp)) {
          return false;
      }
   // see if this is actually in resource space
      var SlashChunks=url.split('/');
      if (SlashChunks[1]!='res') { return false; } 
      return true;
   }
   
   function cstrgo(currenturl,defaulturl) {
      windowcheck();
      var url;
      if ((currenturl == null) || 
          (currenturl == '')   || 
          (! is_editable_resource(currenturl))) {
         url = defaulturl;
      } else {
         var SlashChunks=currenturl.split('/');
         SlashChunks[1]='priv';
         var i;
         for (i=2;i<SlashChunks.length;i++) {
             SlashChunks[i]=SlashChunks[i+1];
         }
         SlashChunks.length--;
         url=SlashChunks.join('/');
      }
      this.document['led'].src="ledsend.gif";
      if (url != '') {
          clientwindow.window.location.href="http://"+clienthost+url;
      }
 }  }
   
 function go(url) {  function go(url) {
    windowcheck();     windowcheck();
      statuslocked=0;
    this.document['led'].src="ledsend.gif";     this.document['led'].src="ledsend.gif";
    if (url!='') {     if (url!='' && url!= null) {
          currentURL = null;
          currentSymb= null;
        clientwindow.window.location.href="http://"+clienthost+url;         clientwindow.window.location.href="http://"+clienthost+url;
    }     }
 }  }
   
 function gopost(url,postdata) {  function gopost(url,postdata) {
    windowcheck();     windowcheck();
    this.document['led'].src="ledsend.gif";     statuslocked=0;
      this.document['led'].src="http://"+clienthost+imgpath+"ledsend.gif";
    if (url!='') {     if (url!='') {
       this.document.server.action="http://"+clienthost+url;        this.document.server.action="http://"+clienthost+url;
       this.document.server.postdata.value=postdata;        this.document.server.postdata.value=postdata;
       this.document.server.command.value='';        this.document.server.command.value='';
       this.document.server.url.value='';        this.document.server.url.value='';
         this.document.server.symb.value='';
       this.document.server.submit();        this.document.server.submit();
    }     }
 }  }
   
 function gocmd(url,cmd) {  function gocmd(url,cmd) {
    windowcheck();     windowcheck();
    this.document['led'].src="ledsend.gif";     statuslocked=0;
      this.document['led'].src="http://"+clienthost+imgpath+"ledsend.gif";
    if (url!='') {     if (url!='') {
       this.document.server.action="http://"+clienthost+url;        this.document.server.action="http://"+clienthost+url;
       this.document.server.postdata.value='';        this.document.server.postdata.value='';
       this.document.server.command.value=cmd;        this.document.server.command.value=cmd;
       this.document.server.url.value=currentURL;        this.document.server.url.value=currentURL;
         this.document.server.symb.value=currentSymb;
       this.document.server.submit();        this.document.server.submit();
    }     }
 }  }
Line 192  function annotate() { Line 325  function annotate() {
    "<html><body onload='Javascript:document.goannotate.submit();'>"     "<html><body onload='Javascript:document.goannotate.submit();'>"
   +"<form name='goannotate' target='Annotator' method='post' "    +"<form name='goannotate' target='Annotator' method='post' "
   +"action='/adm/annotations'>"    +"action='/adm/annotations'>"
   +"<input type='hidden' name='urlnew' value='"+clientwindow.location.href+"'>"    +"<input type='hidden' name='urlnew' value='"+currentURL+"'>"
   +"</form></body></html>");    +"</form></body></html>");
    annotator.document.close();     annotator.document.close();
 }  }
   
 function set_bookmark() {  function set_bookmark() {
    go('');     go('');
    clienttitle="Enter Title";     if (currentStale) {
    clienthref="Enter Address";        clienttitle="Enter Title";
         clienthref=currentURL;
      } else {
         clienttitle=clientwindow.document.title;
         clienthref=clientwindow.location.pathname;
      }
    w_bmquery_flag=1;     w_bmquery_flag=1;
    bmquery=window.open('','bmquery','width=365,height=165,scrollbars=0');     bmquery=window.open('','bmquery','width=365,height=165,scrollbars=0');
    bmquery.document.write(     bmquery.document.write(
Line 217  function set_bookmark() { Line 355  function set_bookmark() {
    bmquery.document.close();     bmquery.document.close();
 }  }
   
   function extenddispclose() {
      if (w_extdisp_flag>0) {
         if (extdisp!=null && !extdisp.closed) {
            extdisp.close();
         }
         w_extdisp_flag=-1;
      }
   }
   
   function extenddisp() {
      go('');
      w_extdisp_flag=1;
      extdisp=window.open("http://"+clienthost+"/adm/rat/empty.html",
                  "ExtDisp", "width=400,height=450");
      extdisp.document.clear();
      extdisp.document.writeln(
     '<html><body bgcolor="#666666" text="#DDDDDD" link="#666666" '+
            'onUnload="opener.w_extdisp_flag=-1;">'+
     '<h2>LON-CAPA Extended Display Remote Control</h2>'+
     '<script>var currentURL="'+currentURL+'";self.focus();</script>'+
     '<table border="2"><tr><th>Select Functionality from Below</th>'+
     '<th>Description</th></tr>');
      for (var i=0; i<=ds.length; i++) {
          if (typeof(ds[i])!='undefined') {
             if (ds[i]!='') {
                extdisp.document.writeln(
                   '<tr><td><a href="javascript:opener.'+
                     hr[i]+';"><img border="0" src="'+
                     this.document['b'+i].src+'" /></a><br />'+
     '<table hspace="0" border="0" cellspacing="1" cellpadding="0"><tr>');
                for (var j=0;j<=7;j++) {
                   if (j<dt[i].length) {
                      ch=dt[i].charAt(j);
                      if (ch==' ') { ch='space'; }
                      if (ch=='-') { ch='hyphen'; }
                      if (ch==':') { ch='colon'; }
                      if (ch=='/') { ch='slash'; }
                   } else { ch='space'; }
                   extdisp.document.writeln('<td><img border="0" src="http://'
                                       +clienthost+fontpath+ch+'.gif" /></td>');
                }
                extdisp.document.writeln('</tr><tr>');
                for (var j=0;j<=7;j++) {
                   if (j<db[i].length) {
                      ch=db[i].charAt(j);
                      if (ch==' ') { ch='space'; }
                      if (ch=='-') { ch='hyphen'; }
                      if (ch==':') { ch='colon'; }
                      if (ch=='/') { ch='slash'; }
                   } else { ch='space'; }
                   extdisp.document.writeln('<td><img border="0" src="http://'
                                       +clienthost+fontpath+ch+'.gif" /></td>');
               }
               extdisp.document.writeln(
     '</tr></table></td><td>'+ds[i]+'</td></tr>');
             }
          }
      }
      extdisp.document.writeln('</table></body></html>');
      extdisp.document.close();
   }
 function edit_bookmarks() {  function edit_bookmarks() {
    go('');     go('');
    w_BookmarkPal_flag=1;     w_BookmarkPal_flag=1;
Line 227  function edit_bookmarks() { Line 426  function edit_bookmarks() {
 function catalog_info() {  function catalog_info() {
    go('');     go('');
    w_LONcatInfo_flag=1;     w_LONcatInfo_flag=1;
    loncatinfo=window.open(clientwindow.window.location.href+'.meta',"LONcatInfo");     loncatinfo=window.open(clientwindow.window.location.pathname+'.meta',"LONcatInfo");
 }  }
 // -->  // -->
 </script>  </script>
   
 <center>  <center>
 <table border="0" cellspacing="1" cellpadding="0">  <table hspace="0" border="0" cellspacing="0" cellpadding="0">
 <tr><td>  <tr><td>
 <a href="javascript:defdis();"  <a href="javascript:defdis();"
    onMouseOver="defdis();"     onMouseOver="defdis();"
 ><img border="0" src="title.gif"></img></a>  ><img border="0" width="80" height="50" src="title.gif"></a>
 </td><td>  </td><td>
 <img border="0" name="led" src="ledoff.gif"> </img>  <img border="0" width="50" height="50" name="led" src="ledoff.gif">
 </td></tr>  </td></tr>
 </table>  </table>
 <br />  </center>
 <table border="0" cellspacing="1" cellpadding="1">  
   <center>
   <a href="javascript:extenddisp();"
      onMouseOver="defdis();"
   ><img width="104" height="10" border="0" src="spacer.gif" /></a>
   </center>
   
   <center>
   <table hspace="1" border="0" cellspacing="0" cellpadding="1">
 <tr><td bgcolor="#666666">  <tr><td bgcolor="#666666">
 <table border="0" cellspacing="1" cellpadding="0">   <table hspace="0" border="0" cellspacing="1" cellpadding="0"> 
 <tr>  <tr>
 <td><img name="i0" src="l.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i0" width="15" height="19" src="/adm/lonLCDfont/l.gif" /></a></td>
 <td><img name="i1" src="o.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i1" width="15" height="19" src="/adm/lonLCDfont/o.gif" /></a></td>
 <td><img name="i2" src="n.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i2" width="15" height="19" src="/adm/lonLCDfont/n.gif" /></a></td>
 <td><img name="i3" src="hyphen.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i3" width="15" height="19" src="/adm/lonLCDfont/hyphen.gif"></a></td>
 <td><img name="i4" src="c.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i4" width="15" height="19" src="/adm/lonLCDfont/c.gif" /></a></td>
 <td><img name="i5" src="a.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i5" width="15" height="19" src="/adm/lonLCDfont/a.gif" /></a></td>
 <td><img name="i6" src="p.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i6" width="15" height="19" src="/adm/lonLCDfont/p.gif" /></a></td>
 <td><img name="i7" src="a.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i7" width="15" height="19" src="/adm/lonLCDfont/a.gif" /></a></td>
 </tr>  </tr>
 <tr>  <tr>
 <td><img name="j0" src="space.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j0" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
 <td><img name="j1" src="space.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j1" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
 <td><img name="j2" src="space.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j2" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
 <td><img name="j3" src="space.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j3" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
 <td><img name="j4" src="space.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j4" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
 <td><img name="j5" src="space.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j5" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
 <td><img name="j6" src="space.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j6" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
 <td><img name="j7" src="space.gif"></img></td>  <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j7" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
 </tr>  </tr>
 </table>  </table>
 </td>  </td></tr>
 </tr>  </table>
 </table><br />  </center>
   
   <center>
   <table hspace="0" border="0" cellspacing="0" cellpadding="0">
   
 <table border="0" cellspacing="0" cellpadding="0">  <tr>
   <td colspan="2"><a href="javascript:eval(hr[11]);" onMouseOver="display(dt[11],db[11]);"><img width="86" height="20" border="0" name="b11" src="dempty.gif" /></a></td>
   <td><a href="javascript:eval(hr[12]);" onMouseOver="display(dt[12],db[12]);"><img width="43" height="20" border="0" name="b12" src="empty.gif" /></a></td>
   </tr>
   
 <tr>  <tr>
 <td colspan="2"><a href="javascript:eval(hr[11]);" onMouseOver="display(dt[11],db[11]);"><img border="0" name="b11" src="dempty.gif"></img></a></td>  <td rowspan="2"><a href="javascript:eval(hr[21]);" onMouseOver="display(dt[21],db[21]);"><img width="43" height="40" border="0" name="b21" src="qempty.gif" /></a></td>
 <td><a href="javascript:eval(hr[12]);" onMouseOver="display(dt[12],db[12]);"><img border="0" name="b12" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[22]);" onMouseOver="display(dt[22],db[22]);"><img width="43" height="20" border="0" name="b22" src="empty.gif" /></a></td>
   <td rowspan="2"><a href="javascript:eval(hr[23]);" onMouseOver="display(dt[23],db[23]);"><img width="43" height="40" border="0" name="b23" src="qempty.gif" /></a></td>
 </tr>  </tr>
   
 <tr>  <tr>
 <td rowspan="2"><a href="javascript:eval(hr[21]);" onMouseOver="display(dt[21],db[21]);"><img border="0" name="b21" src="qempty.gif"></img></a></td>  <td><a href="javascript:eval(hr[31]);" onMouseOver="display(dt[31],db[31]);"><img width="43" height="20" border="0" name="b31" src="empty.gif" /></a></td>
 <td><a href="javascript:eval(hr[22]);" onMouseOver="display(dt[22],db[22]);"><img border="0" name="b22" src="empty.gif"></img></a></td>  
 <td rowspan="2"><a href="javascript:eval(hr[23]);" onMouseOver="display(dt[23],db[23]);"><img border="0" name="b23" src="qempty.gif"></img></a></td>  
 </tr>  </tr>
   
 <tr>  <tr>
 <td><a href="javascript:eval(hr[31]);" onMouseOver="display(dt[31],db[31]);"><img border="0" name="b31" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[41]);" onMouseOver="display(dt[41],db[41]);"><img width="43" height="20" border="0" name="b41" src="empty.gif" /></a></td>
   <td><a href="javascript:eval(hr[42]);" onMouseOver="display(dt[42],db[42]);"><img width="43" height="20" border="0" name="b42" src="empty.gif" /></a></td>
   <td><a href="javascript:eval(hr[43]);" onMouseOver="display(dt[43],db[43]);"><img width="43" height="20" border="0" name="b43" src="empty.gif" /></a></td>
 </tr>  </tr>
   
 <tr>  <tr>
 <td><a href="javascript:eval(hr[41]);" onMouseOver="display(dt[41],db[41]);"><img border="0" name="b41" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[51]);" onMouseOver="display(dt[51],db[51]);"><img width="43" height="20" border="0" name="b51" src="empty.gif" /></a></td>
 <td><a href="javascript:eval(hr[42]);" onMouseOver="display(dt[42],db[42]);"><img border="0" name="b42" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[52]);" onMouseOver="display(dt[52],db[52]);"><img width="43" height="20" border="0" name="b52" src="empty.gif" /></a></td>
 <td><a href="javascript:eval(hr[43]);" onMouseOver="display(dt[43],db[43]);"><img border="0" name="b43" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[53]);" onMouseOver="display(dt[53],db[53]);"><img width="43" height="20" border="0" name="b53" src="empty.gif" /></a></td>
 </tr>  </tr>
   
 <tr>  <tr>
 <td><a href="javascript:eval(hr[51]);" onMouseOver="display(dt[51],db[51]);"><img border="0" name="b51" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[61]);" onMouseOver="display(dt[61],db[61]);"><img width="43" height="20" border="0" name="b61" src="empty.gif" /></a></td>
 <td><a href="javascript:eval(hr[52]);" onMouseOver="display(dt[52],db[52]);"><img border="0" name="b52" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[62]);" onMouseOver="display(dt[62],db[62]);"><img width="43" height="20" border="0" name="b62" src="empty.gif" /></a></td>
 <td><a href="javascript:eval(hr[53]);" onMouseOver="display(dt[53],db[53]);"><img border="0" name="b53" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[63]);" onMouseOver="display(dt[63],db[63]);"><img width="43" height="20" border="0" name="b63" src="empty.gif" /></a></td>
 </tr>  </tr>
   
 <tr>  <tr>
 <td><a href="javascript:eval(hr[61]);" onMouseOver="display(dt[61],db[61]);"><img border="0" name="b61" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[71]);" onMouseOver="display(dt[71],db[71]);"><img width="43" height="20" border="0" name="b71" src="empty.gif" /></a></td>
 <td><a href="javascript:eval(hr[62]);" onMouseOver="display(dt[62],db[62]);"><img border="0" name="b62" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[72]);" onMouseOver="display(dt[72],db[72]);"><img width="43" height="20" border="0" name="b72" src="empty.gif" /></a></td>
 <td><a href="javascript:eval(hr[63]);" onMouseOver="display(dt[63],db[63]);"><img border="0" name="b63" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[73]);" onMouseOver="display(dt[73],db[73]);"><img width="43" height="20" border="0" name="b73" src="empty.gif" /></a></td>
 </tr>  </tr>
   
 <tr>  <tr>
 <td><a href="javascript:eval(hr[71]);" onMouseOver="display(dt[71],db[71]);"><img border="0" name="b71" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[81]);" onMouseOver="display(dt[81],db[81]);"><img width="43" height="20" border="0" name="b81" src="empty.gif" /></a></td>
 <td><a href="javascript:eval(hr[72]);" onMouseOver="display(dt[72],db[72]);"><img border="0" name="b72" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[82]);" onMouseOver="display(dt[82],db[82]);"><img width="43" height="20" border="0" name="b82" src="empty.gif" /></a></td>
 <td><a href="javascript:eval(hr[73]);" onMouseOver="display(dt[73],db[73]);"><img border="0" name="b73" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[83]);" onMouseOver="display(dt[83],db[83]);"><img width="43" height="20" border="0" name="b83" src="empty.gif" /></a></td>
 </tr>  </tr>
   
 <tr>  <tr>
 <td><a href="javascript:eval(hr[81]);" onMouseOver="display(dt[81],db[81]);"><img border="0" name="b81" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[91]);" onMouseOver="display(dt[91],db[91]);"><img width="43" height="20" border="0" name="b91" src="empty.gif" /></a></td>
 <td><a href="javascript:eval(hr[82]);" onMouseOver="display(dt[82],db[82]);"><img border="0" name="b82" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[92]);" onMouseOver="display(dt[92],db[92]);"><img width="43" height="20" border="0" name="b92" src="empty.gif" /></a></td>
 <td><a href="javascript:eval(hr[83]);" onMouseOver="display(dt[83],db[83]);"><img border="0" name="b83" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[93]);" onMouseOver="display(dt[93],db[93]);"><img width="43" height="20" border="0" name="b93" src="empty.gif" /></a></td>
 </tr>  </tr>
   
 <tr>  <tr>
 <td><a href="javascript:eval(hr[91]);" onMouseOver="display(dt[91],db[91]);"><img border="0" name="b91" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[101]);" onMouseOver="display(dt[101],db[101]);"><img width="43" height="20" border="0" name="b101" src="empty.gif" /></a></td>
 <td><a href="javascript:eval(hr[92]);" onMouseOver="display(dt[92],db[92]);"><img border="0" name="b92" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[102]);" onMouseOver="display(dt[102],db[102]);"><img width="43" height="20" border="0" name="b102" src="empty.gif" /></a></td>
 <td><a href="javascript:eval(hr[93]);" onMouseOver="display(dt[93],db[93]);"><img border="0" name="b93" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[103]);" onMouseOver="display(dt[103],db[103]);"><img width="43" height="20" border="0" name="b103" src="empty.gif" /></a></td>
 </tr>  </tr>
   
 <tr>  <tr>
 <td><a href="javascript:eval(hr[101]);" onMouseOver="display(dt[101],db[101]);"><img border="0" name="b101" src="empty.gif"></img></a></td>  <td><a href="javascript:eval(hr[111]);" onMouseOver="display(dt[111],db[111]);"><img width="43" height="20" border="0" name="b111" src="empty.gif" /></a></td>
 <td colspan="2"><a href="javascript:eval(hr[102]);" onMouseOver="display(dt[102],db[102]);"><img border="0" name="b102" src="dempty.gif"></img></a></td>  <td><a href="javascript:eval(hr[112]);" onMouseOver="display(dt[112],db[112]);"><img width="43" height="20" border="0" name="b112" src="empty.gif" /></a></td>
   <td><a href="javascript:eval(hr[113]);" onMouseOver="display(dt[113],db[113]);"><img width="43" height="20" border="0" name="b113" src="empty.gif" /></a></td>
 </tr>  </tr>
   
 </table>  </table>
   </center>
   
   <form name="server" action="/adm/logout" method="post" target="loncapaclient">
 <a href="javascript:defdis();"  <input type="hidden" name="postdata" value="none" />
    onMouseOver="defdis();"  
 ><img border="0" src="spacer.gif"></img></a><br />  
   
 <form name='server' action='/adm/logout' method='post' target='loncapaclient'>  
 <input type='hidden' name='postdata' value='none' />  
 <input type="hidden" name="command" value="none" />  <input type="hidden" name="command" value="none" />
 <input type="hidden" name="url" value="none" />  <input type="hidden" name="url" value="none" />
  </form>  <input type="hidden" name="symb" value="none" />
 </center>  </form>
   <script>
   activate();
   </script>
   </font>
 </body>  </body>
 </html>  </html>
   
   
   
   
   
   
   

Removed from v.1.35  
changed lines
  Added in v.1.77


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