<!--
// -------------------------------------
// Purpose - calculate years in business
// Author  - timothy
// -------------------------------------
var objDate = new Date();
var intYear = objDate.getFullYear();
intYearsInBusiness = intYear - 1892;
if (intYearsInBusiness < 115) {
  intYearsInBusiness = 115;
}
document.write('Celebrating ' + intYearsInBusiness + ' years in business!');
//-->
