<!--
var userName = new Array();
  // insert the first part of the address below
  userName[0]="richg"; //Richard A. Gander
  userName[1]="TomC"; //Tom Curley
  userName[2]="JohnMc"; //John McDonald
  userName[3]="JohnF"; //John Fatta
  userName[4]="webmaster"; //For Webmaster
  userName[5]="golfshirt"; //For GolfShirt
  userName[6]="richg"; //Richard A. Gander


var userNameFull = new Array();
  // Insert the name associated with the address
  // Important! Make sure the numbers line-up with the addresses above
  userNameFull[0]="Richard A. Gander";
  userNameFull[1]="Tom Curley";
  userNameFull[2]="John McDonald";
  userNameFull[3]="John Fatta";
  userNameFull[4]="webmaster";
  userNameFull[5]="Golf Shirt";
  userNameFull[6]="EMAIL Webmaster";
  

// Insert the domain name portion of the address below
var siteName = "fdnygonesouth.com";

i=0;
	do userName[i]='<a href=\"mailto:' + userName[i] + '@' + siteName + '?subject=FDNYGONESOUTH' +  '\">' + userNameFull[i] +'</a>';
	while(userName[++i])
//-->
