﻿/*==============================================================================

Routine to write a by-line

andy J.S. Decepida

*/


function writeByLine () {

  // Get current year
  var cdate = new Date();
  var cyr = cdate.getYear();
  if (cyr < 1000) cyr = cyr + 1900;

  strg = "andy J.S. Decepida (&copy;1993-" + cyr + ") &mdash; " +
         "&#8220;" + document.title +
         "&#8221;";

  // Display date and time document was last updated as well as the document title.
  document.write(strg);
}
