/* 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();
var userNameFull = new Array();
var userDomain = new Array();
var mailLink = new Array();

  // insert the first part of the address below

  userName[0]="president";
  userNameFull[0]="Cornelia Cho";
  userDomain[0]="gamushroomclub.org";  
 
  userName[1]="vicepresident";
  userNameFull[1]="Rod Stafford";
  userDomain[1]="gamushroomclub.org";  
  
    userName[2]="samland2";
  userNameFull[2]="Sam Landes";
  userDomain[2]="earthlink.net";   
  
    userName[3]="kghome";
  userNameFull[3]="Katharine Geier";
  userDomain[3]="bellsouth.net";  
  
  userName[4]="jeanreber";
  userNameFull[4]="Jean Reber";
  userDomain[4]="bellsouth.net";  
  
    userName[5]="bill.cornelius";
  userNameFull[5]="Bill Cornelius";
  userDomain[5]="turner.com";  
  
    userName[6]="georgejim";
  userNameFull[6]="George Altman";
  userDomain[6]="aol.com"; 
  
   userName[7]="terpsichoran";
  userNameFull[7]="Ellen Wan";
  userDomain[7]="gmail.com";  
  
  userName[8]="ddhome";
  userNameFull[8]="David Dunagan";
  userDomain[8]="bellsouth.net"; 
        
  userName[9]="webmaster";
  userNameFull[9]="Rod Stafford";
  userDomain[9]="gamushroomclub.org"; 
  
  
  
  var mailSubject = "subject=From the Georgia Mushroom Club website.";

i=0;

do mailLink[i]='<a href=\"mailto:' + userName[i] + '@' + userDomain[i] + '?' + mailSubject + '\">' + userNameFull[i] + '</a>';

while(userName[++i])




