<!--
// Define Copyright Year variables
// 
var dteTodayYYYY;						// Hold 4-digit year
dteToday = new Date();					// get today's date.
dteTodayYYYY = dteToday.getYear();		// get the year
dteTodayYYYY = "2010";

var strFooter			= "";			// Contains the page footer for the site.
//
strFooter = strFooter + "	<TR>\n";
strFooter = strFooter + "		<td></td>\n";
strFooter = strFooter + "		<td align=\"center\" bgcolor=\"#006600\">\n";
strFooter = strFooter + "			<CENTER>\n";
strFooter = strFooter + "			<SMALL><SMALL><font face=\"arial\">\n";
strFooter = strFooter + "			<a href=\"index.html\">Home</a>\&nbsp;\&nbsp;|\&nbsp;\&nbsp;";
strFooter = strFooter + "			Email:\&nbsp;\n";
strFooter = strFooter + "			<A href=\"mailto:coachrick@ARBISinc.com\">\n";
strFooter = strFooter + "			CoachRick\@ARBISinc.com </A><BR><BR>\n";
strFooter = strFooter + "			Hosting, design, and maintenance by<BR>\n";
strFooter = strFooter + "			<A href=\"http://www.arbisinc.com\" target=\"_blank\">\n";
strFooter = strFooter + "			\&nbsp;<I>ARBIS</i> Internet Solutions, inc.</A>\n";
strFooter = strFooter + "			\&nbsp;Copyright \&copy;1998-" + dteTodayYYYY + "</script>\&nbsp;</font><br><br>\n";
strFooter = strFooter + "			</small></small></center>\n";
strFooter = strFooter + "		</td>\n";
strFooter = strFooter + "		<td></td>\n";
strFooter = strFooter + "	</tr>\n";
// -->
