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

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

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