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