/**************************************************************
Purpose: Store common JavaScript functions to use on other pages.

Modified:
	07/09/05 - Created

**************************************************************/

function writeFooter(){
// Re-usable function to write the footer at the bottom of the page.
	var tmpDate = new Date();
	var tmpYear = tmpDate.getFullYear();
	document.write("<small>Copyright " + tmpYear + " - Rich Puskarich</small>");

}
