//================================================================
// get_copyright
// This function displays the copyright notice at the bottom of
// each page. The "<noscript>" tag within the HTML will insert an
// alternative should scripts be disabled on the user's browser.
//================================================================
function get_copyright(){
	
	// Get the current year
	var varCurrentDate = new Date();
	
	// Extracts the current year from the Date object
	var varYear = varCurrentDate.getFullYear();
	
	// Output the copyright notice
	document.write("<p>&copy; Smokin' Jackets Function Band 2000 - ");
	document.write(varYear);
	document.write('. All rights reserved.');
	
}

//================================================================
// get_copyright_frontpage
// This function displays the copyright notice at the bottom of
// the homepage
//================================================================
function get_copyright_homepage(){
	
	// Get the current year
	var varCurrentDate = new Date();
	
	// Extracts the current year from the Date object
	var varYear = varCurrentDate.getFullYear();
	
	// Output the copyright notice
	document.write("<p>&copy; Smokin' Jackets Function Band 2000 - ");
	document.write(varYear);
	document.write('. All rights reserved. Site developed by <a href="http://www.detoxmedia.co.uk" title="Detox Media - Purifying The Web">Detox Media</a>');
	
}