// Displays "Last updated by Mary King on ...". For use at the bottom of a web page
  var id = 'mary';
	var host = 'thekingz.net';
  var modDate = document.lastModified;
  document.write('<br /><br /><div align=right style="font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size:65%; color:#7A7A7A">Last updated by ');
	document.write('<a href="' + 'mail' + 'to:' + id + '@' + host+ '"')
  document.write(' style="color:#7A7A7A">Mary King</a> on ');
  document.write(modDate.substr(0,6));
  document.write(modDate.substr(8,2));
  document.writeln('&nbsp;&nbsp;</div>');

// To use:
//   <body>
//   ...
//   <script language="javascript" src="http://www.thekingz.net/MJKlastMod.js"></script>
//   </body>  
//
// For an alternative approach, see: kingStuff.js