arr = new Array();
arr.push('President');
arr.push('Pete Alfinito');
arr.push('Beverly City P.D. (Retired)');

arr.push('1st Vice President');
arr.push('John Bain');
arr.push("Burlington County Prosecutor's Office");

arr.push('2nd Vice President');
arr.push('George Sacalis');
arr.push('Delanco Twp.');

arr.push('Secretary');
arr.push('Brian Dumont');
arr.push('Bordentown Twp P.D. (Retired)');

arr.push('Treasurer');
arr.push('Michele Ent');
arr.push('Edgewater Park PD;');

arr.push('Financial Sec.');
arr.push('Vicki Fallon');
arr.push('Pemberton Boro PD');

arr.push('Chaplain');
arr.push('Steve Johnston');
arr.push('Cinnaminson Twp. PD');

arr.push('Conductor');
arr.push('Theresa Davison');
arr.push('Beverly City PD');

arr.push('Guard');
arr.push('Mike Ludlow');
arr.push('Palmyra Borough P.D.');

arr.push('Trustee');
arr.push('Al Parente');
arr.push('Delran Township P.D.');

arr.push('Trustee');
arr.push('Joe Shaw');
arr.push('Cinnaminson Township P.D.');

arr.push('Trustee');
arr.push('Tom Lilligore, Jr.');
arr.push('Cinnaminson Twp. PD');

arr.push('State Trustee');
arr.push('Tyrone Bond');
arr.push('Florence Twp.');

arr2 = new Array();
arr2.push('President');
arr2.push('Brian F. DuMont');
arr2.push('&nbsp;');
                                 
arr2.push('1st Vice President');
arr2.push('Lawrence Stearns');
arr2.push('&nbsp;');
                    
arr2.push('2nd Vice President');
arr2.push('Tyrone Bond');
arr2.push('&nbsp;');
                   
arr2.push('Recording Secretary');
arr2.push('John S. Quigg, Sr.');
arr2.push('&nbsp;');
               
arr2.push('Corresponding Secretary');
arr2.push('Walter F. Jankowski');
arr2.push('&nbsp;');
        
arr2.push('Treasurer');
arr2.push('Russell Bowles');
arr2.push('&nbsp;');
                                
arr2.push('Chaplain');
arr2.push('Brett V. Evans');
arr2.push('&nbsp;');
                                  
arr2.push('Guard');
arr2.push('Charles J. Geoghan');
arr2.push('&nbsp;');
                                      
/*
arr.push('President');
arr.push('Pete Alfinito');
arr.push('Beverly City P.D. (Retired)');

arr.push('1st Vice President');
arr.push('John Bain');
arr.push("Burlington County Prosecutor's Office");

arr.push('2nd Vice President');
arr.push('Grant Valente');
arr.push('Florence Twp. (retired)');

arr.push('Secretary');
arr.push('Brian Dumont');
arr.push('Bordentown Twp P.D. (Retired)');

arr.push('Treasurer');
arr.push('George Sacalis');
arr.push('Delanco Twp.');

arr.push('Financial Sec.');
arr.push('John Quigg');
arr.push('Burlington County Bridge Commission (retired)');

arr.push('Chaplain');
arr.push('Lee Brenner');
arr.push('Homeland Security (Ret.)');

arr.push('Conductor');
arr.push('Vicki Fallon');
arr.push('Pemberton Borough P.D');

arr.push('Guard');
arr.push('Mike Ludlow');
arr.push('Palmyra Borough P.D.');



arr.push('Trustee');
arr.push('Jake Archer');
arr.push('Bordentown City P.D.');

arr.push('Trustee');
arr.push('Joe Shaw');
arr.push('Cinnaminson Township P.D.');

arr.push('Trustee');
arr.push('Al Parente');
arr.push('Delran Township P.D.');

arr.push('State Trustee');
arr.push('Tyrone Bond');
arr.push('Florence Twp.');

arr2.push('President');
arr2.push('Brian DuMont');
arr2.push('');
arr2.push('Past President');
arr2.push('Ken Gilbert');
arr2.push('');
arr2.push('Vice President');
arr2.push('Tom Hoffman');
arr2.push('');
arr2.push('Secretary');
arr2.push('John Quigg');
arr2.push('');
arr2.push('Treasurer');
arr2.push('Grant Valente');
arr2.push('');
arr2.push('Trustee');
arr2.push('Pete Alfinito');
arr2.push('');
arr2.push('Trustee');
arr2.push('Mike Morton');
arr2.push('');
*/

document.write('<div class="content">');
document.write(' <table align="left" cellpadding="4" cellspacing="0" border="1" style="font-size:10pt;">')
document.write(' <tr><td colspan="4"  class="conthead">Lodge Officers</td></tr>');
document.write(' <tr align="center" style="font-weight:bold;background-color:navy;color:white;">');
document.write('  <td>Title</td>');
document.write('  <td>Name</td>');
document.write('  <td>Location</td>');
document.write(' </tr>');
i = 0;
rc1 = "#ffffcc";
rc2 = "#ffffff";
cc1 = "#ffffff"
while ( i < arr.length) {
  if (cc1 == "#ffffff") cc1 = rc1; else cc1 = rc2;
  document.write('<tr style="background-color:' + cc1 + ';">');
  document.write('<td valign="top">' + arr[i++] + '</td>');
  document.write('<td valign="top">' + arr[i++] + '</td>');
  document.write('<td valign="top">' + arr[i++] + '</td>');
  document.write('</tr>');
}

document.write('<tr><td colspan="4"  class="conthead">Home Association Officers</td></tr>');
i = 0;
rc1 = "#ffffcc";
rc2 = "#ffffff";
cc1 = "#ffffff"
while ( i < arr2.length) {
  if (cc1 == "#ffffff") cc1 = rc1; else cc1 = rc2;
  document.write('<tr style="background-color:' + cc1 + ';">');
  document.write('<td valign="top">' + arr2[i++] + '</td>');
  document.write('<td valign="top">' + arr2[i++] + '</td>');
  document.write('<td valign="top">' + arr2[i++] + '</td>');
  document.write('</tr>');
}

document.write('<tr><td colspan="4">');
document.write('<div class="footer">Copyright ©2004, New Jersey Fraternal Order of Police Lodge No. 2<br>All Rights Reserved</div>');
document.write('</td></tr>');
document.write('</table>');

document.write('</div>');
