//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+"-Ministère Nouveaux Débuts. ® Tous droits réservés.")
}//end NBM_Year
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//Function purpose: This function is the Footer
function Footer()
{	
     document.write('<p align="center"><font face="Arial" size="1">Toute reproduction, complète ou partielle, par quelque procédé que ce soit, du texte et / ou des images contenues dans ce site Web est strictement interdite sans l');
  
  //the reason for this is in the "l'approbation" this character "'" end the text message as shown above, therefore I use the line below as a work around
  document.write("'")


	 document.write('approbation du Ministère Nouveaux Débuts.<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
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
