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

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

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