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

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

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