<!--
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Lee Underwood :: http://javascript.internet.com/ */

var userName = new Array();
  // insert the first part of the address below
  userName[0]="jcwessell";
  userName[1]="nkrodel";
  userName[2]="mmerrill";
  userName[3]="johara";
  userName[4]="jmarshall";
  userName[5]="kchase";
  userName[6]="mdonato";
  userName[7]="seniorinfo";
  userName[8]="seniorinfo";
  userName[9]="ebonefas";
  userName[10]="swells";
  userName[11]="bkoski";
  userName[12]="jgootkin";
  userName[13]="lnapolitano";
  userName[14]="jwilliamson";

var userNameFull = new Array();
  // Insert the name associated with the address
  // Important! Make sure the numbers line-up with the addresses above
  userNameFull[0]="Joan Wessell, Executive Director, Ext. 114";
  userNameFull[1]="Nancy Krodel, Deputy Director for Operations, Ext. 122";
  userNameFull[2]="Mike Merrill, Deputy Director for Finance, Ext. 120";
  userNameFull[3]="John O'Hara, Resident Services Coordinator, Ext. 118";
  userNameFull[4]="Joan Marshall, Respite Program Coordinator, Ext. 121";
  userNameFull[5]="Kathy Chase, Grants Administrator, Ext. 113";
  userNameFull[6]="Marion Donato, Caregivers Program Coordinator, Ext. 124";
  userNameFull[7]="Alice Caron, CHOICES Counselor, Ext. 116";
  userNameFull[8]="Laura Crews, Office Manager, Ext. 129";
  userNameFull[9]="Erica Bonefas, Secretary, Ext. 110";
  userNameFull[10]="Sherry Wells, Bookkeeper, Ext. 119";
  userNameFull[11]="Betty Koski, Deputy Director for Consumer Education, Ext. 112";
  userNameFull[12]="Joyce Gootkin, Consumer Information Specialist, Ext. 111";
  userNameFull[13]="Lori Napolitano, Nursing Home Transition Coordinator, Ext. 123";
  userNameFull[14]="Michael Hoyt, Nursing Home Transition Coordinator Ext. 115";

// Insert the domain name portion of the address below
var siteName = "seniorresourcesec.org";

i=0;
do userName[i]='<a href=\"mailto:' + userName[i] + '@' + siteName + '\">' + userNameFull[i] + '</a>';
while(userName[++i])
// -->
