function footnote(strcurrentpage){
	if (strcurrentpage == 'home'){
		document.write("Home&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	else{
		document.write("<a href=/hewitt/index.htm>Home</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	if (strcurrentpage == 'about'){
		document.write("About Hewitt&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	else{
		document.write("<a href=/hewitt/about/index.htm>About Hewitt</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	if (strcurrentpage == 'services'){
		document.write("Our Services&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	else{
		document.write("<a href=/hewitt/services/index.htm>Our Services</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	/*
	if (strcurrentpage == 'issues'){
		document.write("People Solutions&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	else{
		document.write("<a href=/hewitt/business/index.htm>People Solutions</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	*/
	if (strcurrentpage == 'resource'){
		document.write("Resource Library&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	else{
		document.write("<a href=/hewitt/resource/index.htm>Resource Library</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	if (strcurrentpage == 'investor'){
		document.write("Investor Relations <br>");
		}
	else{
		document.write("<a href=/hewitt/investor_relations/index.htm>Investor Relations</a> <br>");
		}
		
	if (strcurrentpage == 'careers'){
		document.write("Careers&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	else{
		document.write("<a href=/hewitt/careers/index.htm>Careers</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	if (strcurrentpage == 'worldwide'){
		document.write("Global Locations&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	else{
		document.write("<a href=/hewitt/worldwide/index.htm>Global Locations</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	if (strcurrentpage == 'login'){
		document.write("Log In&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	else{
		document.write("<a href=/hewitt/login/index.htm alt='Hewitt clients who subscribe to our online resources can access them here.'>Log In</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	if (strcurrentpage == 'sitemap'){
		document.write("Site Map&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	else{
		document.write("<a href=/hewitt/sitemap/index.htm alt='An outline of our entire Web site.'>Site Map</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	if (strcurrentpage == 'contact'){
		document.write("Contact Us&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	else{
		document.write("<a href=/hewitt/contact/index.htm alt='Use these online forms to ask a question or obtain more information.'>Contact Us</a>&nbsp;&nbsp;|&nbsp;&nbsp;");
		}
	if (strcurrentpage == 'email'){
		document.write("Email The Page");
		}
	else{
	    var pageurl= window.location.href;		
		document.write("<a href=\"javascript:openEmail('" + pageurl + "');\">Email This Page</a>");		
		}
}
function openEmail(url)
{	
    //alert ("url = "+url);
	window.open('/hewitt/emailFriend.jsp?page=' + url,'emailWindow','directories=no,height=560,width=780,left=10,top=10,menubar=no,resizable=yes,status=yes,toolbar=no,location=no,scrollbars=yes');
}


