//Author: Jermaine Walker
//File purpose: To increase maintainability of the website, hence a footer. 


////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//Function purpose: This function is used to get the current year from your computer
function NBM_Year()
{	
  var theDate = new Date();
  var year = theDate.getFullYear()
  
  document.write("© Copyright "+year+"- New Beginnings Ministry. ® All rights reserved.")
}//end NBM_Year
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function Footer()
//Function purpose: This function is the Footer
{	
     document.write('<p align="center"><font face="Arial" size="1">No portion of this web site, text and/or images may be reproduced in any form without the written permission of New Beginnings Ministry.<br>');
      document.write('<br>');
	  
      NBM_Year();
	  
	  document.write('<br><a href="mailto:administrator@nbmchurch.org?subject=Comments">Give us your comments about our website.</a></font>');
	  
}// end Footer
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////