function PrintFooter()
{
	var d = new Date();
	var curr_date = d.getDate();
	var curr_month = d.getMonth();
	var curr_year = d.getFullYear();
	footer = '</tr>\n';
	footer += '<tr valign="top">\n';
	footer += '<td align="right" colspan="2" class="footer">\n';
	footer += '<a class="smalltext" href="#top">Top of page</a>&nbsp;&nbsp;&nbsp;&nbsp;\n';
	footer += '<a class="smalltext" href="javascript:void(printFriendly())">Printer Friendly</a>&nbsp;&nbsp;&nbsp;\n';
	footer += '&copy; '+curr_year+' <a class="smalltext" href="http://cnse.albany.edu">The College of Nanoscale Science and Engineering</a>\n';
	footer += 'at <a class="smalltext" href="http://www.albany.edu">The University at Albany</a></td>\n';
	footer += '</tr>\n';
	footer += '</table></center>\n';
	document.write(footer);
}

  
