/* ******************************************************************

page_end_special.js
Written by Travis Saling

"End of page" code for unusual situations - this simply displays the
copyright info and the document.lastModified date.

Current as of 02/09/00  12:24   TLS

****************************************************************** */

  document.writeln('<br clear=all>');
  document.writeln('<hr>');
  //
  document.writeln('<p class=notation>');
  document.writeln('Questions, comments, or suggestions regarding this page?');
  document.writeln('<a href="/computing/webmaster_email.html">Write to the Webmaster</a>.');
  document.writeln('</p>');
  //
  document.writeln('<p class=notation>');
  document.writeln('<a href="/legal.html">All contents &copy; 1994-2001 UW Electrical Engineering</a><br>');
  //
  var last_mod_date = new Date(document.lastModified);
  browser_version = navigator.appVersion.substring(0,1);
  if (browser_version >= 4) {
    var last_mod_year = last_mod_date.getFullYear().toString();
    }
  else {
    var last_mod_year = last_mod_date.getYear().toString();
    }
  if ((last_mod_year.length > 3) && (last_mod_year.substring(0,4) < "1990"))
    last_mod_year = "20" + last_mod_year.substring(2);
  var last_mod_month = last_mod_date.getMonth() + 1;
  if (last_mod_month < 10) { last_mod_month = "0" + last_mod_month; }
  var last_mod_day = last_mod_date.getDate();
  if (last_mod_day < 10) { last_mod_day = "0" + last_mod_day; }
  //
  if (self.location.pathname.indexOf("cgi")== -1)
    document.writeln('This page was last updated ' + last_mod_month + '/' + last_mod_day + '/' + last_mod_year);
  document.writeln('</p>');
