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