
<!-- Functions for automating and prettying the Last Modified Date -->

	function makeArray() {
		for (i = 0; i < makeArray.arguments.length; i++)
			this[i + 1] = makeArray.arguments[i];
		}

	var months = new makeArray('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
		
	function WriteLastModified() {
		var lastSave = new Date(document.lastModified);

		document.writeln('Last Modified: ' + months[lastSave.getMonth() + 1] + ' ' + lastSave.getDate() + ', ' + lastSave.getFullYear());
		}


<!-- Function for E-Mail Footer -->

	function WriteEMail() {
		document.writeln("<p>Mail, comments, suggestions: <a href='mailto:Rick@RicksTradingCards.com'>Rick@RicksTradingCards.com</a> </p>");
		}


<!-- Functions to create uniform table tags across all pages -->

	function WriteOuterTable() {
		document.writeln("<table border='1' width='100%' bordercolor='#808080' cellspacing='0' cellpadding='0' class='outer'>");
		}
		
	function WriteInnerTable() {
		document.writeln("<table border='1' width='100%' bordercolor='#111111' cellspacing='0' cellpadding='4' class='inner'>");
		}


