// JavaScript Document
var helpArray = 
[ "Enter your name here.", // element 0 
"Enter your email address in the format user@domain.", // element 1 
 "Enter the Post name and number of your American Legion.", // element 2
 "City your Legion Post is located.", // element 3
 "Check this box to be added to our email list for special events.", // element 4 
 "In this box, enter any comments or questions you have ", // element 5 
 "This button submits the form to the Legion post 47 email.", // element 6 
 "This button clears the form.", // element 7 
 "" ]; // element 8
function helpText( messageNum ) 
{ 
document.getElementById( "tip" ).innerHTML = 
helpArray[ messageNum ]; 
} 
