function insertCopyright(){
self.document.write('&#169; 2001-');
// Here's the dynamic part where we get the current year for the 
// copyright notice.
d = new Date();
self.document.write(d.getFullYear());

// finish the sentence.
self.document.write('&nbsp;John Hancock Life Insurance Company USA (JHUSA) and affiliated companies"');
}

