//<!--// create document tag for page-specific counter  
  var tags = document.URL.split("/").length - 1;  
  var xx = document.URL.split("/")[tags];  
  var docn = xx.split(".")[0];
  var Now = new Date()
  var LM = new Date(document.lastModified);

// update the general counter  
var rl = ""
rl +='<IMG SRC="/cgi-bin/Count.cgi?df=keithpindex&sh=F" ALT="Counter Offline">'

// update the page-specific counter  
+'<IMG SRC="/cgi-bin/Count.cgi?df=keithp' + docn + '&sh=F" ALT="Counter Offline">'

// final writes  
+'<p><table cellpadding=5><tr><td><a href="sitemap.htm">Site Map</a></td><td> </td><td> </td>'
+'<td><a href="search.htm">Site Search</a></td></tr></table></p>'
+'<h5><I><b>copyright &#169; 1997-2000 by <a href="author.htm">'
+ 'Keith A. Pickering</a></b></I></h5><hr><small>'
+'<pre><I>This webpage is:             </I><b>' + document.location + '</b>'
+ '<br><i>This page was last updated:  </i><b>' + LM.toGMTString() + '</b>'
+ '<br><i>This access was:             </i><b>' + Now.toGMTString() + '</b>'
+'</pre></small>'
document.write(rl)
//-->
