
<!-- Start

// NOTE: If you use a ' add a slash before it like this \'

// Copyright Info

function y2k(number) 
{
   return (number < 1000) ? number + 1900 : number; 
} 
   
var today = new Date(); 
var year = y2k(today.getFullYear()); 

document.write('<div id="footer">'); 
document.write('<span class=footerReason>To Glorify God & Reflect Jesus in all of Life</span><br>');
document.write('<span class="bottomNav"><a href="http://www.trinitybclaramie.org/newsletter.php">Newsletter</a>&nbsp;|&nbsp;<a href="http://www.trinitybclaramie.org/aboutus.php">About Us</a>&nbsp;|&nbsp;<a href="http://www.trinitybclaramie.org/purpose.php">Purpose</a>&nbsp;|&nbsp;<a href="http://www.trinitybclaramie.org/calendar/events.php">Events</a>&nbsp;|&nbsp;<a href="http://www.trinitybclaramie.org/findus.php">Find Us</a>&nbsp;|&nbsp;<a href="http://www.trinitybclaramie.org/team.php">Team</a>&nbsp;|&nbsp;<a href="http://www.trinitybclaramie.org/index.php">Home</a></span>');
document.write('<BR><BR>');
document.write('<TABLE WIDTH=100%>');
document.write('<TR>');
document.write('<TD WIDTH=50% ALIGN=LEFT VALIGN=TOP>');
document.write('&copy; 2008-'+year+' all rights reserved by Trinity Baptist Church<br>');
document.write('1270 North Ninth Street  Laramie, WY  | 307-745-5162'); 
document.write('</TD>');
document.write('<TD WIDTH=50% ALIGN=RIGHT VALIGN=TOP>');
document.write('Site Design and Hosting:<br>');
document.write('<a href="http://www.admirable.us" target="new">Admirable Consulting, Inc.</a>');
document.write('</TD>');
document.write('</TR>');
document.write('</TABLE>');
document.write('</div>');

//  End -->

