/* 
To make changes to the Director's Street Address: City, State, Zip: Name:
Phone Number: Email: Simply erase the old information that is in between the 
double quotes - Example erase 17 Indian Creek Drive leaving the ("") add the new
information in the middle of the quotes "1234 Happy St".
*/
function autoFooter(multiLine)
{
    var footerText="THE AMERICAN ACADEMY OF HEALTH BEHAVIOR";
	footerText+="<br />";
	footerText+="Joanne Sommers, Executive Director";
	footerText+="<br />";
	footerText+="17 Indian Creek Drive";
	footerText+="<br />";
	footerText+="Rudolph, Ohio, 43462";
	footerText+="<br />";
	footerText+="Phone number (419) 760-6020";
	footerText+="<br />";
	footerText+="email: jsommer@bgsu.edu";
	
	document.getElementById('J').innerHTML =footerText;
}

/* 
For new pages you will need to copy the following:  <script src="http://aahb-temp.net/autoFooter.js"
type="text/javascript"></script>--> and put it in the <head>. you will also need to put - onLoad="autoFooter(true)" into the <body> and then copy <div id="J" class="caption">The American Academy of Health
Behavior<br /></div> to put into the footer. 8/30/09 JDS 
*/
