
<!--

//  Javascript functions used to output the footer at the bottom of
//    each page.
//



//  Output the standard footer
//
function output_footer()
{
	var today = new Date();
	var y0 = today.getFullYear();
	
	var beforeText = '<table width="760" border="0" ' +
			   'cellspacing="0" cellpadding="0">\n' +
			   '<tr><td>\n' +
			   '<div class="footer">\n' +
			   'Send your suggestions, comments or queries to our ' +
			   '<a href="/about/webmaster.htm" accesskey="w" title="Webmaster [accesskey = w]">Webmaster</a>.<br>\n' +
			    '<a href="/about/terms.htm" accesskey="c" title="Copyright [accesskey = c]">Data arrangement ' +
			   'and software copyright</a> ' +
			   '&copy; 2003-' ;
	var afterText = ' ProQuest LLC. ' +
			   'All Rights Reserved.' +
			   '</div>\n' +
			   '</td></tr>\n' +
			   '<tr><td>' +
			   '<img src="/images/bottomborder.gif" alt="" ' +
			   'width="760" height="35">' +
			   '</td></tr>\n' +
			   '</table>';			   
	document.write( beforeText + y0 + afterText);
}


// -->
