// AUTHOR: Fred Preller
// Creation date: 2009-09-07
// footer.js
// Write standard page footer into current document
//     Input is pagename, a string.	 
if(undefined===window.pagename){ window.pagename = document.location.href ;	}
document.write( '<HR />' ) ;
document.write( '<DIV class="center foot">' ) ;
document.write( '"KEEP THE SHOW ON THE ROAD"<br />' ) ;
document.write( 'Official Website of the 384th Bomb Group (H), Inc.<br />' ) ;
today=new Date(); // Initialize Date in raw form
year=today.getFullYear(); // Get the year 
document.write( 'Site design and content © 1999-'+year+' by ' ) ;
page=pagename ;
document.write( '<a href="mailto:Webmaster@384thBombGroup.com?subject='+page+' Page -">Webmaster</a><br />' ) ;
document.write( '<a href="http://www.384thbombgroup.com/"><span style="font-weight: bolder">[Go to 384th HOME Page]</span></a>' ) ;
document.write( '</DIV>' ) ;
