/* ===========================================================================   sig.js	Hit counter code	 jB  Sun 031305 =========================================================================== */// Author: jB  Sat 031305 //	For notes see Decision 031305-A. function sig() { document.write('J. E. Brown'); } function sig_credentials() { 	sig();     //	document.write(', BSc Computer Science, has been a software engineer for over 20 years. '); // thru 053110 	document.write(', a master\'s-level Computer Scientist, has been a software engineer for over 25 years. '); // [060110] } function sig_copyright(years) { 	if (years == null) 		years = "present" 	if (years.indexOf("present") != -1) 		{		today = new Date(); year = today.getFullYear(); 		years = years.replace(/present/, "" + year);   // year-present 		years = years.replace(RegExp("" + year + "-" + year), "" + year); // year-sameyear 		}	document.write("Copyright &copy; " + years + " &nbsp;"); sig(); document.write(" &nbsp; all rights reserved. "); } // sig_copyright2()  jB  Tu 122810  Implements Concept 122710-D. function sig_copyright2(years) { 	sig_copyright(years); 	MakeSpanInvisible("copyright1"); } // contact_info_ltd()   jB  M 081505 function contact_info_ltd(company) { 	document.write('I am not an employee of ' + company + '.<BR>');	document.write('I charge $5 per question.'); } 
