/*
 * Footer Script 1.0 - Call footer to have dynamic year jscript
 *
 * ISG - Patrick
 * 01/09/2010
 */
 
Stamp = new Date();
year = Stamp.getYear();
if (year < 2000) year = 1900 + year;
document.write('<p class="padding"> &copy; ' + year + ' American Finance Solutions | All rights reserved.</p>');
