Annotation of loncom/html/res/adm/pages/menu.html, revision 1.90

1.1       www         1: <html>
                      2: <!--
                      3: The LearningOnline Network with CAPA
                      4: Remote Control
1.40      www         5: 
                      6: //
1.90    ! www         7: // $Id: menu.html,v 1.89 2003/02/25 19:16:46 albertel Exp $
1.40      www         8: //
                      9: // Copyright Michigan State University Board of Trustees
                     10: //
                     11: // This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                     12: //
                     13: // LON-CAPA is free software; you can redistribute it and/or modify
                     14: // it under the terms of the GNU General Public License as published by
                     15: // the Free Software Foundation; either version 2 of the License, or
                     16: // (at your option) any later version.
                     17: //
                     18: // LON-CAPA is distributed in the hope that it will be useful,
                     19: // but WITHOUT ANY WARRANTY; without even the implied warranty of
                     20: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     21: // GNU General Public License for more details.
                     22: //
                     23: // You should have received a copy of the GNU General Public License
                     24: // along with LON-CAPA; if not, write to the Free Software
                     25: // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     26: //
                     27: // /home/httpd/html/adm/gpl.txt
                     28: //
                     29: // http://www.lon-capa.org/
                     30: //
                     31: 
1.1       www        32: -->
                     33: <head>
                     34: <title>LON-CAPA Remote</title>
                     35: </head>
                     36: 
1.23      www        37: <body bgcolor="#BBBBBB" 
1.46      www        38:       background="remotebg.gif"
1.90    ! www        39:       onUnload="go('/adm/remote?action=collapse')"
1.85      www        40:       onLoad="activate();"
1.49      matthew    41:       >
1.62      www        42: <font size="1">
1.88      albertel   43: <LONCAPA_INTERNAL_LONHTTPD_PORT />
1.19      albertel   44: <script type="text/javascript">
1.22      harris41   45: <!--
1.44      matthew    46: var statustop = '';
                     47: var statusbot = '';
                     48: var active = 0;
1.55      www        49: var dislocked = 1;
1.71      www        50: var statuslocked = 0;
1.1       www        51: 
1.89      albertel   52: if (lonhttpdport == null) {
                     53:     var lonhttpdport='8080';
                     54: }
1.88      albertel   55: var imgpath=':'+lonhttpdport+'/res/adm/pages/';
                     56: var fontpath=':'+lonhttpdport+'/adm/lonLCDfont/';
1.27      harris41   57: var currentURL='';
1.59      www        58: var reloadURL='';
1.68      www        59: var currentSymb='';
                     60: var reloadSymb='';
1.28      www        61: var currentStale=1;
1.33      www        62: var menucltim;
1.60      www        63: 
                     64: var clockdelta=0;
1.55      www        65: 
1.77      www        66: var w_extdisp_flag=-1;
1.87      www        67: var extdisp=null;
1.77      www        68: 
1.84      www        69: var autologout=1;
                     70: 
1.25      harris41   71: // not used (yet)
                     72: // var w_Annotator;
                     73: // var w_bmquery;
                     74: // var w_BookmarkPal;
                     75: // var w_LONcatInfo;
                     76: 
                     77: //////////////////////////////////////
                     78: var w_Annotator_flag=-1;
                     79: var w_bmquery_flag=-1;
                     80: var w_BookmarkPal_flag=-1;
                     81: var w_LONcatInfo_flag=-1;
                     82:  // 1 means currently open
                     83:  // 0 means closed (but has been open)
                     84:  // -1 means never yet opened/defined
                     85: ///////////////////////////////////////
                     86: 
1.44      matthew    87: var hr = new Array;
                     88: var db = new Array;
                     89: var dt = new Array;
1.74      www        90: var ds = new Array;
1.44      matthew    91: 
                     92: for (var i=1;i<=3;i++) {
                     93:    for (var j=1;j<=10;j++) {
                     94:       var index = 10*j+i;
1.49      matthew    95:       hr[index]='';
                     96:       db[index]='';
                     97:       dt[index]='';
1.74      www        98:       ds[index]='';
1.44      matthew    99:    }
                    100: }
1.31      www       101: 
1.44      matthew   102: var clienthost=window.location.host;
                    103: var clientwindow=opener;
1.1       www       104: 
1.60      www       105: function syncclock(servertime) {
                    106:     var clientclock=new Date;
                    107:     clockdelta=servertime-clientclock.getTime();
                    108: }
                    109: 
1.55      www       110: function advanceclock() {
1.60      www       111:     var clock=new Date();
                    112:     clock.setTime(clock.getTime()+clockdelta);
1.71      www       113:     if (!statuslocked) {
                    114:        var days=""+clock.getDate();
                    115:        if (days.length<2) { days="0"+days; }
                    116:        var mons=""+(clock.getMonth()+1);
                    117:        if (mons.length<2) { mons="0"+mons; }
                    118:        var years=""+clock.getYear();
                    119: 
                    120:        if (years>1000) {
                    121:           years=years.substring(2,4);
                    122:        } else {
                    123:           years=years.substring(1,3);
                    124:        }
                    125:        statustop=mons+'/'+days+'/'+years;
                    126: 
                    127:        var secs=""+clock.getSeconds();
                    128:        if (secs.length<2) { secs="0"+secs; }
                    129:        var mins=""+clock.getMinutes();
                    130:        if (mins.length<2) { mins="0"+mins; }
                    131:        var hours=""+clock.getHours();
                    132:        if (hours.length<2) { hours=" "+hours; }
                    133:        statusbot=hours+':'+mins+':'+secs;
1.58      www       134: 
1.71      www       135:        if (!dislocked) { showdisplay(); }
1.63      www       136:     }
1.55      www       137:     setTimeout('advanceclock();',1000);
                    138: }
                    139: 
1.1       www       140: function windowcheck() {
1.45      www       141:    if (clientwindow==null || clientwindow.closed) {
                    142:       clientwindow=window.open("http://"+clienthost+"/",'',
                    143:       "height=400,width=440,"+
                    144:       "scrollbars=1,toolbar=1,status=1,resizable=1,location=1,"+
                    145:       "left=190,top=15,screenX=190,screenY=15"); 
1.1       www       146:    }
1.7       www       147:    clientwindow.name='loncapaclient';
1.45      www       148:    clientwindow.menuwindow=self;
1.77      www       149:    extenddispclose();
1.1       www       150: }
                    151: 
1.5       www       152: function logout () {
1.10      www       153:    windowcheck();
1.41      www       154: 
1.25      harris41  155:       if (w_Annotator_flag!=-1 && annotator && !annotator.closed) {
                    156:           annotator.close();
                    157:       }
                    158:       if (w_bmquery_flag!=-1 && bmquery && !bmquery.closed) {
                    159:           bmquery.close();
                    160:       }
                    161:       if (w_BookmarkPal_flag!=-1 && bookmarkpal && !bookmarkpal.closed) {
                    162:           bookmarkpal.close();
                    163:       }
                    164:       if (w_LONcatInfo_flag!=-1 && loncatinfo && !loncatinfo.closed) {
                    165:           loncatinfo.close();
                    166:       }
1.84      www       167:       if (autologout) {
                    168:          clientwindow.window.location.href="http://"+clienthost+"/adm/logout";
                    169:       }
1.1       www       170: }
                    171: 
1.23      www       172: function activate () {
1.86      www       173:    setTimeout('opener.menuloaded=1;',1000);
                    174:    setTimeout('active=1;',500);
1.55      www       175:    advanceclock();
1.23      www       176: }
                    177: 
                    178: function deactivate () {
                    179:    active=0;
                    180: }
                    181: 
1.1       www       182: function display(utext,ltext) {
1.58      www       183:     this.window.focus();
                    184:     showdisplay(utext,ltext);
                    185: }
                    186: 
                    187: function showdisplay(utext,ltext) {
1.23      www       188:   var i; var ch;
1.55      www       189:   dislocked=1;
1.47      matthew   190:   if (utext == null) { utext = '';}
                    191:   if (ltext == null) { ltext = '';}
1.49      matthew   192:   if (typeof(utext)!="string") { utext=''; }
                    193:   if (typeof(ltext)!="string") { ltext=''; }
1.31      www       194:   if ((utext=='') && (ltext=='')) {
                    195:      utext=statustop;
                    196:      ltext=statusbot;
1.55      www       197:      dislocked=0;
1.31      www       198:   }
1.23      www       199:   if (active) { 
1.1       www       200:    for (i=0;i<=7;i++) {
                    201:       if (i<utext.length) {
                    202:          ch=utext.charAt(i);
                    203:          if (ch==' ') { ch='space'; }
                    204:          if (ch=='-') { ch='hyphen'; }
1.55      www       205:          if (ch==':') { ch='colon'; }
                    206:          if (ch=='/') { ch='slash'; }
1.1       www       207:       } else { ch='space'; }
1.73      www       208:       this.document['i'+i].src="http://"+clienthost+fontpath+ch+'.gif';
1.1       www       209:    }
                    210:    for (i=0;i<=7;i++) {
                    211:       if (i<ltext.length) {
                    212:          ch=ltext.charAt(i);
                    213:          if (ch==' ') { ch='space'; }
                    214:          if (ch=='-') { ch='hyphen'; }
1.55      www       215:          if (ch==':') { ch='colon'; }
                    216:          if (ch=='/') { ch='slash'; }
1.1       www       217:       } else { ch='space'; }
1.73      www       218:       this.document['j'+i].src="http://"+clienthost+fontpath+ch+'.gif';
1.1       www       219:    }
1.23      www       220:   }
1.1       www       221: }
                    222: 
                    223: function defdis() {
                    224:    this.window.focus();
1.55      www       225:    display();
1.1       www       226: }
                    227: 
1.74      www       228: function switchbutton(row,col,imgsrc,texttop,textbot,action,desc) {
1.31      www       229:    var idx=10*row+col;
1.39      www       230:    this.document['b'+idx].src="http://"+clienthost+imgpath+imgsrc;
1.31      www       231:    hr[idx]=action;
                    232:    dt[idx]=texttop;
                    233:    db[idx]=textbot;
1.74      www       234:    ds[idx]=desc;
1.85      www       235:    for (var k=0;k<document.links.length;k++) {
                    236:        if (document.links[k].name=='link'+idx) {
                    237:           document.links[k].title=desc;
                    238:        }
                    239:    }
1.39      www       240: } 
1.31      www       241: 
                    242: function clearbut(row,col) {
                    243:    var idx=10*row+col;
1.39      www       244:    this.document['b'+idx].src="http://"+clienthost+imgpath+'empty.gif';
1.31      www       245:    hr[idx]='javascript:defdis();';
                    246:    dt[idx]='';
                    247:    db[idx]='';
1.74      www       248:    ds[idx]='';
1.85      www       249:    for (var k=0;k<document.links.length;k++) {
                    250:        if (document.links[k].name=='link'+idx) {
                    251:           document.links[k].title='';
                    252:        }
                    253:    }
1.31      www       254: }
                    255: 
1.1       www       256: function setstatus(tp,bt) {
1.70      www       257:    this.document['led'].src="http://"+clienthost+imgpath+"ledblink.gif";
1.1       www       258:    statustop=tp;
                    259:    statusbot=bt;
1.71      www       260:    statuslocked=1;
1.1       www       261:    defdis();
1.47      matthew   262: }
                    263: 
1.1       www       264: function go(url) {
1.10      www       265:    windowcheck();
1.71      www       266:    statuslocked=0;
1.81      www       267:    this.document['led'].src="http://"+clienthost+imgpath+"ledsend.gif";
1.53      matthew   268:    if (url!='' && url!= null) {
1.47      matthew   269:        currentURL = null;
1.68      www       270:        currentSymb= null;
1.7       www       271:        clientwindow.window.location.href="http://"+clienthost+url;
                    272:    }
                    273: }
                    274: 
                    275: function gopost(url,postdata) {
1.10      www       276:    windowcheck();
1.71      www       277:    statuslocked=0;
                    278:    this.document['led'].src="http://"+clienthost+imgpath+"ledsend.gif";
1.7       www       279:    if (url!='') {
                    280:       this.document.server.action="http://"+clienthost+url;
1.8       www       281:       this.document.server.postdata.value=postdata;
1.34      www       282:       this.document.server.command.value='';
                    283:       this.document.server.url.value='';
1.68      www       284:       this.document.server.symb.value='';
1.34      www       285:       this.document.server.submit();
                    286:    }
                    287: }
                    288: 
                    289: function gocmd(url,cmd) {
                    290:    windowcheck();
1.71      www       291:    statuslocked=0;
                    292:    this.document['led'].src="http://"+clienthost+imgpath+"ledsend.gif";
1.34      www       293:    if (url!='') {
                    294:       this.document.server.action="http://"+clienthost+url;
                    295:       this.document.server.postdata.value='';
                    296:       this.document.server.command.value=cmd;
                    297:       this.document.server.url.value=currentURL;
1.68      www       298:       this.document.server.symb.value=currentSymb;
1.7       www       299:       this.document.server.submit();
1.1       www       300:    }
                    301: }
                    302: 
1.2       tyszkabe  303: function annotate() {
1.25      harris41  304:    w_Annotator_flag=1;
1.11      tyszkabe  305:    annotator=window.open('','Annotator','width=365,height=265,scrollbars=0');
1.14      www       306:    annotator.document.write(
                    307:    "<html><body onload='Javascript:document.goannotate.submit();'>"
                    308:   +"<form name='goannotate' target='Annotator' method='post' "
                    309:   +"action='/adm/annotations'>"
1.36      www       310:   +"<input type='hidden' name='urlnew' value='"+currentURL+"'>"
1.14      www       311:   +"</form></body></html>");
                    312:    annotator.document.close();
1.2       tyszkabe  313: }
                    314: 
                    315: function set_bookmark() {
                    316:    go('');
1.36      www       317:    if (currentStale) {
                    318:       clienttitle="Enter Title";
                    319:       clienthref=currentURL;
                    320:    } else {
                    321:       clienttitle=clientwindow.document.title;
                    322:       clienthref=clientwindow.location.pathname;
                    323:    }
1.25      harris41  324:    w_bmquery_flag=1;
1.24      tyszkabe  325:    bmquery=window.open('','bmquery','width=365,height=165,scrollbars=0');
                    326:    bmquery.document.write(
                    327:    "<html><body bgcolor='bbbbbb'><center><form method='post'"
                    328:    +" name='newlink' action='/adm/bookmarks' target='bmquery' "
                    329:    +">\n <table width=340 height=150 "
                    330:    +"bgcolor='ffffff' align=center><tr><td>Link Name:<br><input "
                    331:    +"type='text' name='title' size=45 value='"+clienttitle+"'>"
                    332:    +"<br>Address:<br><input type='text' name='address' size='45' "
                    333:    +"value='"+clienthref+"'><br><center><input type='submit' "
                    334:    +"value='Save'> <input type='button' value='Close (no save)' "
                    335:    +"onclick='javascript:window.close();'></center></td>"
                    336:    +"</tr></table></form></center></body></html>");
                    337:    bmquery.document.close();
1.2       tyszkabe  338: }
                    339: 
1.77      www       340: function extenddispclose() {
                    341:    if (w_extdisp_flag>0) {
                    342:       if (extdisp!=null && !extdisp.closed) {
                    343:          extdisp.close();
                    344:       }
                    345:       w_extdisp_flag=-1;
                    346:    }
                    347: }
                    348: 
1.75      www       349: function extenddisp() {
1.74      www       350:    go('');
1.77      www       351:    w_extdisp_flag=1;
1.87      www       352:    extdisp=window.open("http://"+clienthost+"/adm/rat/loading.html",
1.82      albertel  353:                "ExtDisp", "scrollbars=1,width=400,height=450");
1.87      www       354: }
                    355: 
                    356: function drawwindow() {
1.74      www       357:    extdisp.document.clear();
                    358:    extdisp.document.writeln(
1.78      www       359:   '<html><body bgcolor="#666666" text="#DDDDDD" link="#EEEEEE" '+
1.77      www       360:          'onUnload="opener.w_extdisp_flag=-1;">'+
1.74      www       361:   '<h2>LON-CAPA Extended Display Remote Control</h2>'+
                    362:   '<script>var currentURL="'+currentURL+'";self.focus();</script>'+
1.76      www       363:   '<table border="2"><tr><th>Select Functionality from Below</th>'+
                    364:   '<th>Description</th></tr>');
1.74      www       365:    for (var i=0; i<=ds.length; i++) {
                    366:        if (typeof(ds[i])!='undefined') {
                    367:           if (ds[i]!='') {
                    368:              extdisp.document.writeln(
1.78      www       369:                 '<tr><td align="center"><a href="javascript:opener.'+
                    370:                hr[i]+';">&gt;&gt;&gt;<img align="absmiddle" border="0" src="'+
                    371:              this.document['b'+i].src+'" />&lt;&lt;&lt;</a><br />&nbsp;<br />'+
1.74      www       372:   '<table hspace="0" border="0" cellspacing="1" cellpadding="0"><tr>');
                    373:              for (var j=0;j<=7;j++) {
                    374:                 if (j<dt[i].length) {
                    375:                    ch=dt[i].charAt(j);
                    376:                    if (ch==' ') { ch='space'; }
                    377:                    if (ch=='-') { ch='hyphen'; }
                    378:                    if (ch==':') { ch='colon'; }
                    379:                    if (ch=='/') { ch='slash'; }
                    380:                 } else { ch='space'; }
                    381:                 extdisp.document.writeln('<td><img border="0" src="http://'
                    382:                                     +clienthost+fontpath+ch+'.gif" /></td>');
                    383:              }
                    384:              extdisp.document.writeln('</tr><tr>');
                    385:              for (var j=0;j<=7;j++) {
                    386:                 if (j<db[i].length) {
                    387:                    ch=db[i].charAt(j);
                    388:                    if (ch==' ') { ch='space'; }
                    389:                    if (ch=='-') { ch='hyphen'; }
                    390:                    if (ch==':') { ch='colon'; }
                    391:                    if (ch=='/') { ch='slash'; }
                    392:                 } else { ch='space'; }
                    393:                 extdisp.document.writeln('<td><img border="0" src="http://'
                    394:                                     +clienthost+fontpath+ch+'.gif" /></td>');
                    395:             }
                    396:             extdisp.document.writeln(
                    397:   '</tr></table></td><td>'+ds[i]+'</td></tr>');
                    398:           }
                    399:        }
                    400:    }
                    401:    extdisp.document.writeln('</table></body></html>');
                    402:    extdisp.document.close();
                    403: }
1.87      www       404: 
1.2       tyszkabe  405: function edit_bookmarks() {
                    406:    go('');
1.25      harris41  407:    w_BookmarkPal_flag=1;
                    408:    bookmarkpal=window.open("http://"+clienthost+"/adm/bookmarks",
1.6       www       409:                "BookmarkPal", "width=400,height=505,scrollbars=0");
1.2       tyszkabe  410: }
                    411: 
1.14      www       412: function catalog_info() {
                    413:    go('');
1.25      harris41  414:    w_LONcatInfo_flag=1;
1.67      bowersj2  415:    loncatinfo=window.open(clientwindow.window.location.pathname+'.meta',"LONcatInfo");
1.14      www       416: }
1.22      harris41  417: // -->
1.1       www       418: </script>
                    419: <center>
1.54      matthew   420: <table hspace="0" border="0" cellspacing="0" cellpadding="0">
1.1       www       421: <tr><td>
                    422: <a href="javascript:defdis();"
                    423:    onMouseOver="defdis();"
1.80      albertel  424: ><img border="0" width="80" height="50" src="title.gif" /></a>
1.1       www       425: </td><td>
1.80      albertel  426: <img border="0" width="50" height="50" name="led" src="ledoff.gif" />
1.1       www       427: </td></tr>
                    428: </table>
1.54      matthew   429: </center>
                    430: 
                    431: <center>
1.75      www       432: <a href="javascript:extenddisp();"
1.54      matthew   433:    onMouseOver="defdis();"
1.74      www       434: ><img width="104" height="10" border="0" src="spacer.gif" /></a>
1.54      matthew   435: </center>
                    436: 
                    437: <center>
                    438: <table hspace="1" border="0" cellspacing="0" cellpadding="1">
1.1       www       439: <tr><td bgcolor="#666666">
1.54      matthew   440: <table hspace="0" border="0" cellspacing="1" cellpadding="0"> 
1.1       www       441: <tr>
1.66      www       442: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i0" width="15" height="19" src="/adm/lonLCDfont/l.gif" /></a></td>
                    443: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i1" width="15" height="19" src="/adm/lonLCDfont/o.gif" /></a></td>
                    444: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i2" width="15" height="19" src="/adm/lonLCDfont/n.gif" /></a></td>
1.80      albertel  445: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i3" width="15" height="19" src="/adm/lonLCDfont/hyphen.gif" /></a></td>
1.66      www       446: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i4" width="15" height="19" src="/adm/lonLCDfont/c.gif" /></a></td>
                    447: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i5" width="15" height="19" src="/adm/lonLCDfont/a.gif" /></a></td>
                    448: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i6" width="15" height="19" src="/adm/lonLCDfont/p.gif" /></a></td>
                    449: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0"  name="i7" width="15" height="19" src="/adm/lonLCDfont/a.gif" /></a></td>
1.62      www       450: </tr>
                    451: <tr>
1.66      www       452: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j0" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    453: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j1" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    454: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j2" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    455: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j3" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    456: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j4" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    457: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j5" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    458: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j6" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
                    459: <td><a href="javascript:defdis();" onMouseOver="defdis();"><img border="0" name="j7" width="15" height="19" src="/adm/lonLCDfont/space.gif" /></a></td>
1.1       www       460: </tr>
                    461: </table>
1.54      matthew   462: </td></tr>
                    463: </table>
                    464: </center>
1.1       www       465: 
1.54      matthew   466: <center>
                    467: <table hspace="0" border="0" cellspacing="0" cellpadding="0">
1.31      www       468: 
                    469: <tr>
1.83      www       470: <td colspan="2"><a name="link11" 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>
                    471: <td><a name="link12" 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>
1.31      www       472: </tr>
                    473: 
                    474: <tr>
1.83      www       475: <td rowspan="2"><a name="link21" 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>
                    476: <td><a name="link22" 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>
                    477: <td rowspan="2"><a name="link23" 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>
1.31      www       478: </tr>
                    479: 
                    480: <tr>
1.83      www       481: <td><a name="link31" 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>
1.31      www       482: </tr>
                    483: 
                    484: <tr>
1.83      www       485: <td><a name="link41" 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>
                    486: <td><a name="link42" 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>
                    487: <td><a name="link43" 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>
1.31      www       488: </tr>
                    489: 
                    490: <tr>
1.83      www       491: <td><a name="link51" 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>
                    492: <td><a name="link52" 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>
                    493: <td><a name="link53" 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>
1.31      www       494: </tr>
                    495: 
                    496: <tr>
1.83      www       497: <td><a name="link61" 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>
                    498: <td><a name="link62" 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>
                    499: <td><a name="link63" 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>
1.31      www       500: </tr>
                    501: 
                    502: <tr>
1.83      www       503: <td><a name="link71" 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>
                    504: <td><a name="link72" 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>
                    505: <td><a name="link73" 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>
1.31      www       506: </tr>
                    507: 
                    508: <tr>
1.83      www       509: <td><a name="link81" 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>
                    510: <td><a name="link82" 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>
                    511: <td><a name="link83" 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>
1.31      www       512: </tr>
1.1       www       513: 
1.31      www       514: <tr>
1.83      www       515: <td><a name="link91" 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>
                    516: <td><a name="link92" 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>
                    517: <td><a name="link93" 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>
1.35      www       518: </tr>
                    519: 
                    520: <tr>
1.83      www       521: <td><a name="link101" 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>
                    522: <td><a name="link102" 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>
                    523: <td><a name="link103" 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>
1.31      www       524: </tr>
1.1       www       525: 
1.62      www       526: <tr>
1.83      www       527: <td><a name="link111" 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>
                    528: <td><a name="link112" 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>
                    529: <td><a name="link113" 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>
1.62      www       530: </tr>
                    531: 
1.31      www       532: </table>
1.54      matthew   533: </center>
1.1       www       534: 
1.54      matthew   535: <form name="server" action="/adm/logout" method="post" target="loncapaclient">
                    536: <input type="hidden" name="postdata" value="none" />
1.34      www       537: <input type="hidden" name="command" value="none" />
                    538: <input type="hidden" name="url" value="none" />
1.68      www       539: <input type="hidden" name="symb" value="none" />
1.54      matthew   540: </form>
1.62      www       541: </font>
1.1       www       542: </body>
1.20      www       543: </html>
1.42      matthew   544: 
                    545: 
                    546: 
                    547: 
                    548: 
                    549: 
                    550: 

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