//  javascript to print the copyright notice
// maintenance notes:  only works with browsers that support javascript.
// Note: accuracy of year depends on the computer user's date setting.

var now = new Date(); 
var yr = now.getUTCFullYear();
var cText = 'Copyright ' + yr + ' Palmeri Digital, LLC.  All Rights Reserved.'
document.write(cText);


