<!--
/* 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]="info";
  userName[1]="tom";
  userName[2]="marcia";
  userName[3]="peggyd";
  userName[4]="gregorys";
  userName[5]="heatherc";
  userName[6]="sharond";
  userName[7]="erikc";
  userName[8]="susanm";
  userName[9]="ambers";
  userName[10]="angelal";
  userName[11]="robinb";
  userName[12]="katherinem";

var userNameFull = new Array();
  // Insert the name associated with the address
  // Important! Make sure the numbers line-up with the addresses above
  userNameFull[0]="Info";
  userNameFull[1]="Thomas O. Marien";
  userNameFull[2]="Marcia L. Marien";
  userNameFull[3]="Peggy Dougherty";
  userNameFull[4]="Gregory R. Schuyler";
  userNameFull[5]="Heather L. Capalbo";
  userNameFull[6]="Sharon D. Dumais";
  userNameFull[7]="Erik Christensen";
  userNameFull[8]="Susan M. Macione";
  userNameFull[9]="Amber L. Schmidt";
  userNameFull[10]="Angela S. Lathrop";
  userNameFull[11]="Robin A. Baratz";
  userNameFull[12]="Katherine McNair";

// Insert the domain name portion of the address below
var siteName = "mariencpas.com";

i=0;
do userName[i]='<a href=\"mailto:' + userName[i] + '@' + siteName + '\">' + userNameFull[i] + '</a>';
while(userName[++i])
// -->