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

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

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