
e = [
	  [0,'emailAddress','email link text (leave empty for email address)'],
	  [1,'twirebach@echovalleygraphics.com','Tony Wirebach, CWYSC Registrar'],
	  [2,'twirebach@echovalleygraphics.com','Tony Wirebach'],
	  [3,'siteMaster@c4sitefactory.com','siteMaster'],
	  [4,"doctorlatte@yahoo.com","Don Ramsay"],
	  [5,"goldensoccerfan@verizon.net","Ed Blanchette"],
	  [6,'tonyw@evgrfx.com','Tony Wirebach, CWYSC Webmaster'],
	  [7,'shannon@mmdlabel.com','Shannon Morales, Fundraising Chair'],
	  [8,'tonyw@evgrfx.com','']
];

function noSpam(n) {
	var name = e[n][2];
	var eMail = e[n][1];
	if(name=='') { name = eMail; }
	document.write('<a href=\"mailto:'+eMail+'\">'+name+'</a>');
}

