/*
---------------------------------------------------------------------------------------------
	TOP & PREVIOUS: This file includes the function which controls and displays the
	links for "Top of Page" and "Previous Page".  The links are displayed near the
	bottom of every page.
---------------------------------------------------------------------------------------------
*/

/*
******************************************************
	begin functions for Top of Page & Previous Page
******************************************************
*/
	function topOfPage() {
		var beginData = '<td class="bottomPageLinksBold" width="400" height="20" valign="middle" align="center">';
		var anchorTOP = '<a href="#top">';
		var anchorPREV = '<a href="javascript:prevPage()">';
		var endAnchor = '</a>';
		var endData = '</td>';

		document.write(beginData);
		document.write(anchorTOP);
		document.write('Top of Page');
		document.write(endAnchor);
		document.write(endData);

		document.write(beginData);
		document.write(anchorPREV);
		document.write('Previous Page');
		document.write(endAnchor);
		document.write(endData);
	}

	function prevPage() {
		window.history.back();
	}

/*
******************************************************
	end functions for Top of Page & Previous Page
******************************************************
*/