function insertCopyright(){
self.document.write('\©&nbsp;');
// 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;Hancock Natural Resource Group, Inc.');
}