//JavaScript file for virtual footer
//Update this document only to change footer on site
now = new Date
thisYear=now.getYear();
if (thisYear < 1900) {
thisYear = thisYear + 1900;
}
   function printVirtualFooter()
{
document.write('<a href=information.html#copyright>Copyright</a> &copy; ' + thisYear + ' Albert-Emile Elzas&nbsp;&nbsp;&nbsp;All rights reserved.');
}