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