// JavaScript Document
function takeYear(theDate)
{
	x = theDate.getYear();
	var y = x % 100;
	y += (y < 38) ? 2000 : 1900;
	return y;
}
function writefooter(){
	footer1='<div id="footer">';
	footer1+='<ul>';
	footer1 += '<li><a href="http://www.impactinformation.com">&copy; ' + takeYear(new Date()) + ' Nestlé Health Science S.A.</a></li>';
	footer1+='<li><a href="../Privacy_Policy/index.htm">Privacy Policy</a></li>';
	footer1+='<li><a href="../disclaimer/index.htm">Terms of Use</a></li>';
	footer2 = '<li><a href="http://www.nestlehealthscience.com" target="_blank">Nestl&eacute; Health Science</a></li>';
	footer2+='</ul>'; 
	footer2+='</div>';
	var today = new Date();
	Year = takeYear(today);

	document.write(footer1+footer2);
}
