// 04/05/03 move cgi to bumpcookie so it can be  in the head
// 06/15/04 move CGI back to here so as not to take up 3 pixles of height
//     all this time  r=stuff + current cookie!  maybe that's where multiple sets are coming from
//     changed to   doc.cookie=k  NO !! what about the U,L,C bump just put there! use +=
document.write( 
"<table  width=99% border=0 ><tr>" + 
" <td align=right style=font-size:xx-small> " +
"This page last modified on " + document.lastModified + "<br>" +
"©2003 St Aloysius Parish, Caldwell, NJ. All rights reserved" +
"<a href=http://www.Real-World-Systems.com/DGerman.html" +
"   title=\"This web page hand crafted by Dennis German\"></a> " +
"</table> ");
//  secret visitor tracker/logger
var c,k;
if (navigator.appName == "Netscape")c=screen.pixelDepth; else  c=screen.colorDepth ;
k =     document.location + 
  	"&size="    + screen.width +    
	"&colors="  + c +    
	"&referer=" + escape(document.referrer) +
	"&java="    + navigator.javaEnabled()  ;
document.cookie += k ;  

document.write(
"<img src=\"http://www.hicom.net/~danmar/cgi-bin/logit.cgi?" + k + "\" width=3 height=3 border=0 >") 
window.status=" "; //hide img loading from hicom
// //////////// end of end-o-doc.js
