<!--
// Define Copyright Year variables
// 
var dteTodayYYYY;						// Hold 4-digit year
dteToday = new Date();					// get today's date.
dteTodayYYYY = dteToday.getYear();		// get the year
dteTodayYYYY = "2007";

var strFooter			= "";			// Contains the page footer for the site.
//
strFooter = strFooter + "	<TR>\n";
strFooter = strFooter + "		<td></td>\n";
strFooter = strFooter + "		<td align=\"center\">\n";
strFooter = strFooter + "			<CENTER>\n";
strFooter = strFooter + "			<SMALL><font face=\"arial\">\n";
strFooter = strFooter + "				<A href=\"index.html\">Home</a> | \n";
strFooter = strFooter + "				<A href=\"mailto:brad@arbisinc.com\">Email</A>\n";
strFooter = strFooter + "			</font></SMALL>\n";
strFooter = strFooter + "			<BR><BR>\n";
strFooter = strFooter + "			<SMALL><SMALL><font face=\"arial\">\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;" + 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";
// -->
